Skip to content

Commit

Permalink
Add Podspec and Swift version file
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSundell committed Apr 8, 2019
1 parent 29c512e commit 64be3da
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .swift-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5.0
15 changes: 15 additions & 0 deletions Codextended.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Pod::Spec.new do |spec|
spec.name = "Codextended"
spec.version = "0.1.0"
spec.summary = "Extensions giving Swift's Codable API type inference super powers."
spec.description = "Codextended adds a set of extensions on top of Swift's Codable API to give it type inference super powers."
spec.homepage = "https://github.com/JohnSundell/Codextended"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "John Sundell" => "[email protected]" }
spec.source = { :git => "https://github.com/JohnSundell/Codextended.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/Codextended/*.swift"
spec.ios.deployment_target = "9.0"
spec.osx.deployment_target = "10.9"
spec.watchos.deployment_target = "3.0"
spec.tvos.deployment_target = "9.0"
end

0 comments on commit 64be3da

Please sign in to comment.