forked from ninjaprox/NVActivityIndicatorView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NVActivityIndicatorView.podspec
29 lines (25 loc) · 1.09 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
27
28
29
Pod::Spec.new do |s|
s.name = 'NVActivityIndicatorView'
s.version = '5.1.1'
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.documentation_url = 'https://nvactivityindicatorview.vinhis.me'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.swift_version = '5.0'
s.source = { git: 'https://github.com/ninjaprox/NVActivityIndicatorView.git',
tag: s.version }
s.subspec 'Base' do |ss|
ss.source_files = 'Sources/Base/**/*.swift'
end
s.subspec 'Extended' do |ss|
ss.dependency 'NVActivityIndicatorView/Base'
ss.source_files = 'Sources/Extended/**/*.swift'
end
s.default_subspec = 'Base'
s.frameworks = 'UIKit', 'QuartzCore'
end