- Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathColor.podspec
More file actions
Latest commit
17 lines (15 loc) · 625 Bytes
/
Copy pathColor.podspec
File metadata and controls
17 lines (15 loc) · 625 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.newdo |spec|
spec.name='Color'
spec.version='0.1.1'
spec.authors={'Sam Soffes'=>'sam@soff.es'}
spec.homepage='https://github.com/soffes/Color'
spec.summary='Color utilities'
spec.description='Color utilities in pure Swift.'
spec.source={:git=>'https://github.com/soffes/Color.git',:tag=>"v#{spec.version}"}
spec.license={:type=>'MIT',:file=>'LICENSE'}
spec.osx.deployment_target='10.10'
spec.ios.deployment_target='8.0'
spec.watchos.deployment_target='2.0'
spec.tvos.deployment_target='9.0'
spec.source_files='Sources/Color/**/*.{swift}'
end