forked from isair/JSONHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSONHelper.podspec
More file actions
18 lines (16 loc) · 817 Bytes
/
JSONHelper.podspec
File metadata and controls
18 lines (16 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'JSONHelper'
s.version = '2.1.0'
s.license = { :type => 'zlib', :file => 'LICENSE' }
s.summary = '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