- Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathSpring.podspec
More file actions
Latest commit
15 lines (15 loc) · 577 Bytes
/
Copy pathSpring.podspec
File metadata and controls
15 lines (15 loc) · 577 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.newdo |s|
s.name='Spring'
s.version='1.0.6'
s.license='MIT'
s.summary='A library to simplify iOS animations in Swift.'
s.homepage='https://github.com/MengTo/Spring'
s.authors={'Meng To'=>'meng@designcode.io'}
s.source={:git=>'https://github.com/MengTo/Spring.git',:tag=>s.version.to_s}
s.requires_arc=true
s.ios.deployment_target='8.0'
s.tvos.deployment_target='11.0'
s.source_files='Spring/*.swift'
s.ios.resources=['Spring/*.xib','SpringApp/*.xcassets']
s.tvos.resources=['SpringApp/*.xcassets']
end