Files
JBChartView/MessagePack/1.0.0/MessagePack.podspec
T
Eloy Durán a164a801aa Merge branch 'master' into clean_paths
Conflicts:
	BlocksKit/0.5.0/BlocksKit.podspec
	BlocksKit/0.9.0/BlocksKit.podspec
	BlocksKit/0.9.5/BlocksKit.podspec
	BlocksKit/1.0.0/BlocksKit.podspec
	BlocksKit/1.0.1/BlocksKit.podspec
	BlocksKit/1.0.2/BlocksKit.podspec
	BlocksKit/1.0.3/BlocksKit.podspec
	BlocksKit/1.0.4/BlocksKit.podspec
	BlocksKit/1.0.5/BlocksKit.podspec
	BlocksKit/1.0.6/BlocksKit.podspec
	HockeySDK/2.2.6/HockeySDK.podspec
	ZBarSDK/1.2.2/ZBarSDK.podspec
	ZipKit/0.0.1/ZipKit.podspec
2012-07-20 10:38:25 +02:00

21 lines
1.0 KiB
Ruby

Pod::Spec.new do |s|
s.name = 'MessagePack'
s.version = '1.0.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Extremely efficient object serialization library. It\'s like JSON, but very fast and small.'
s.description = <<-DESC
This is a wrapper for the C MessagePack parser, building the bridge to
Objective-C. In a similar way to the JSON framework, this parses MessagePack
into NSDictionaries, NSArrays, NSNumbers, NSStrings, and NSNulls. This contains
a small patch to the C library so that it doesn't segfault with a byte alignment
error when running on the iPhone in armv7 mode. Please note that the parser has
been extensively tested, however the packer has not been. Please get in touch if
it has issues.
DESC
s.homepage = 'https://github.com/msgpack/msgpack-objectivec'
s.author = { 'Chris Hulbert' => 'chris.hulbert@gmail.com' }
s.source = { :git => 'https://github.com/msgpack/msgpack-objectivec.git',
:tag => '1.0.0' }
s.source_files = '*.{h,m}', 'msgpack_src/*.{c,h}', 'msgpack_src/msgpack/*.h'
end