- Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathJSONCodable.podspec
More file actions
Latest commit
13 lines (13 loc) · 542 Bytes
/
Copy pathJSONCodable.podspec
File metadata and controls
13 lines (13 loc) · 542 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
Pod::Spec.newdo |s|
s.name='JSONCodable'
s.version='3.0.1'
s.ios.deployment_target='8.0'
s.osx.deployment_target='10.10'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.summary='Hassle-free JSON encoding and decoding in Swift'
s.homepage='https://github.com/matthewcheok/JSONCodable'
s.authors={'Matthew Cheok'=>'hello@matthewcheok.com'}
s.source={:git=>'https://github.com/matthewcheok/JSONCodable.git',:tag=>s.version}
s.source_files='JSONCodable/*.swift'
s.requires_arc=true
end