forked from ninjaprox/NVActivityIndicatorView
-
Notifications
You must be signed in to change notification settings - Fork 1
/
NVActivityIndicatorView.podspec
26 lines (22 loc) · 1.06 KB
/
NVActivityIndicatorView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = "NVActivityIndicatorView"
s.version = "4.3.0"
s.summary = "A collection of awesome loading animations"
s.homepage = "https://github.com/ninjaprox/NVActivityIndicatorView"
s.screenshot = "https://raw.githubusercontent.com/ninjaprox/NVActivityIndicatorView/master/Demo.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Vinh Nguyen" => "[email protected]" }
s.social_media_url = "http://twitter.com/ninjaprox"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/ninjaprox/NVActivityIndicatorView.git", :tag => s.version }
s.subspec "Presenter" do |ps|
ps.source_files = "Source/NVActivityIndicatorView/**/*.swift"
end
s.subspec "AppExtension" do |aes|
aes.source_files = "Source/NVActivityIndicatorView/**/*.swift"
aes.exclude_files = "Source/NVActivityIndicatorView/Presenter/*.swift"
end
s.default_subspec = "Presenter"
s.frameworks = "UIKit", "QuartzCore"
end