forked from ninjinkun/NJKWebViewProgress
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNJKWebViewProgress.podspec
More file actions
Latest commit
17 lines (17 loc) · 704 Bytes
/
Copy pathNJKWebViewProgress.podspec
File metadata and controls
17 lines (17 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.newdo |s|
s.name="NJKWebViewProgress"
s.version="0.2.3"
s.license={:type=>'MIT',:file=>'LICENSE'}
s.summary="UIWebView progress interface."
s.homepage="https://github.com/ninjinkun/NJKWebViewProgress"
s.authors={"ninjinkun"=>"ninjin@mac.com"}
s.source={:git=>"https://github.com/ninjinkun/NJKWebViewProgress.git",:tag=>"v#{s.version}"}
s.platform=:ios,'4.3'
s.requires_arc=true
s.subspec'Core'do |ss|
ss.source_files='NJKWebViewProgress/NJKWebViewProgress.{h,m}'
end
s.subspec'ProgressView'do |ss|
ss.source_files='NJKWebViewProgress/NJKWebViewProgressView.{h,m}'
end
end