Skip to content

Commit

Permalink
Merge pull request #3 from dkhamsing/cocoapods
Browse files Browse the repository at this point in the history
Add CocoaPods support
  • Loading branch information
Kevin Ballard committed Mar 5, 2016
2 parents 9984d24 + de81bf6 commit 85b60ec
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions PMJSON.podspec
@@ -0,0 +1,22 @@
Pod::Spec.new do |s|
s.name = "PMJSON"
s.version = "0.9"
s.summary = "Pure Swift JSON encoding/decoding library"
s.description = "PMJSON provides a pure-Swift strongly-typed JSON encoder/decoder as well as a set of convenience methods for converting to/from Foundation objects and for decoding JSON structures."

s.homepage = "https://github.com/postmates/PMJSON"

s.license = "MIT & Apache License, Version 2.0"

s.author = { "kballard" => "kevin@sb.org" }
s.social_media_url = "https://twitter.com/eridius"

s.source = { :git => "https://github.com/postmates/PMJSON.git", :tag => "v0.9" }

s.source_files = "Sources/*.{swift,h,m}",

s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
end

0 comments on commit 85b60ec

Please sign in to comment.