Last active
December 30, 2018 00:53
-
-
Save mntone/67da26ee5aec28615a0414438d44eb4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = "UrlEncodedForm" | |
| s.version = "1.0.5" | |
| s.summary = "Parse and serialize url-encoded form data with Codable support." | |
| s.license = { :type => 'MIT', :file => 'LICENSE' } | |
| s.homepage = "https://github.com/vapor/url-encoded-form" | |
| s.author = { "vapor" => "github[at]vapor.codes" } | |
| s.source = { :git => "https://github.com/vapor/url-encoded-form.git", :tag => "1.0.5" } | |
| s.platform = :ios, '8.0' | |
| s.requires_arc = true | |
| s.source_files = 'Sources/URLEncodedForm/**/*.swift' | |
| s.dependency 'Bits' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment