Skip to content

Commit

Permalink
Merge pull request mirek#27 from falconser/cocoapods_spec
Browse files Browse the repository at this point in the history
Add podspec. Update cocoapod version to an actual changeset
  • Loading branch information
mirek authored Apr 3, 2017
2 parents c099c4b + 1d77200 commit 089561f
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions YAML-Framework.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
Pod::Spec.new do |s|
s.name = "YAML-Framework"
s.version = "0.0.3"
s.summary = "Proper YAML support for Objective-C. Based on recommended LibYAML."
s.description = "YAML.framework provides support for YAML (de)serialisation similarly to standard NSPropertyListSerialization. Based on C LibYAML library by Kirill Simonov."

s.homepage = "http://getpocket.com/developer/"
s.license = { :type => 'MIT', :text => <<-TEXT
Copyright (c) 2010 Mirek Rusin (YAML.framework)
2006 Kirill Simonov (LibYAML)
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the \"Software\"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
TEXT
}

s.authors = { "Mirek Rusin" => "[email protected]", "Kirill Simonov" => "kiril" }
s.source = { :git => "https://github.com/mirek/YAML.framework.git", :tag => "v0.0.3" }

s.requires_arc = false

s.source_files = "YAMLSerialization.{h,m}", "yaml-0.1.4/config.h"
s.public_header_files = 'YAMLSerialization.h'
s.dependency "LibYAML", "~> 0.1.4"

end

0 comments on commit 089561f

Please sign in to comment.