Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions YAML-Framework.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
Pod::Spec.new do |s|
s.name = "YAML-Framework"
s.version = "0.0.2"
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 = "https://github.com/mirek/YAML.framework"
s.license = {
:type => 'MIT',
:text => <<-LICENSE
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.
LICENSE
}

s.authors = { "Mirek Rusin" => "mirek@me.com", "Kirill Simonov" => "kiril" }
s.source = { :git => "https://github.com/mirek/YAML.framework.git", :tag => 'v0.0.2' }
s.source_files = 'YAMLSerialization.{h,m}', 'yaml-0.1.4/config.h'
s.public_header_files = 'YAMLSerialization.h'
s.requires_arc = false
s.dependency 'LibYAML', '~> 0.1.4'
end
4 changes: 2 additions & 2 deletions YAMLSerialization.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//
// YAMLSerialization.h
// YAML Serialization support by Mirek Rusin based on C library LibYAML by Kirill Simonov
// Released under MIT License
// Released under MIT License
//
// Copyright 2010 Mirek Rusin
// Copyright 2010 Stanislav Yudin
// Copyright 2010 Stanislav Yudin
//

#import <Foundation/Foundation.h>
Expand Down
Loading