- Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathJSONHelper.podspec
More file actions
Latest commit
20 lines (17 loc) · 908 Bytes
/
Copy pathJSONHelper.podspec
File metadata and controls
20 lines (17 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.newdo |s|
s.name='JSONHelper'
s.version='2.2.0'
s.license={:type=>'zlib',:file=>'LICENSE'}
s.summary='Convert values of any type into any other type in just one operation!'
s.description='Convert anything into anything in one operation; hex strings into UIColor/NSColor, JSON strings into class instances, y/n strings to booleans, arrays and dictionaries of these; anything you can make sense of!'
s.homepage='https://github.com/isair/JSONHelper'
s.author={'Baris Sencan'=>'baris.sncn@gmail.com'}
s.social_media_url='https://twitter.com/IsairAndMorty'
s.ios.deployment_target='8.0'
s.osx.deployment_target='10.9'
s.tvos.deployment_target='9.0'
s.source={:git=>'https://github.com/isair/JSONHelper.git',:tag=>s.version}
s.source_files='JSONHelper/**/*.swift'
s.frameworks='Foundation'
s.requires_arc=true
end