forked from isair/JSONHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JSONHelper.podspec
20 lines (17 loc) · 908 Bytes
/
JSONHelper.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |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' => '[email protected]' }
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