forked from jsonmodel/jsonmodel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSONModel.podspec
More file actions
22 lines (16 loc) · 745 Bytes
/
JSONModel.podspec
File metadata and controls
22 lines (16 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "JSONModel"
s.version = "1.7.0"
s.summary = "Magical Data Modelling Framework for JSON. Create rapidly powerful, atomic and smart data model classes."
s.homepage = "http://www.jsonmodel.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Marin Todorov" => "touch-code-magazine@underplot.com" }
s.source = { :git => "https://github.com/jsonmodel/jsonmodel.git", :tag => s.version }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.7'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'JSONModel/**/*.{m,h}'
s.public_header_files = 'JSONModel/**/*.h'
s.requires_arc = true
end