-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJsonObject.podspec
More file actions
20 lines (18 loc) · 873 Bytes
/
JsonObject.podspec
File metadata and controls
20 lines (18 loc) · 873 Bytes
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 = "JsonObject"
s.version = "0.1.0"
s.summary = "Magical Swift JSON Modeling Framework"
s.description = <<-DESC
Working with JSON in Swift can be a pain.
But it doesn't have to be.
JsonObject makes initializing your Swift class from a JSON dictionary a breeze and lets you easily serialize it back!
DESC
s.homepage = "https://github.com/Skyvive/JsonObject"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Brad Hilton" => "brad.hilton.nw@gmail.com" }
s.source = { :git => "https://github.com/Skyvive/JsonObject.git", :tag => "0.1.0" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.source_files = "JsonObject", "JsonObject/**/*.{swift,h,m}"
s.requires_arc = true
end