diff --git a/PodioKit/1.0.0/PodioKit.podspec b/PodioKit/1.0.0/PodioKit.podspec new file mode 100644 index 00000000000000..4332a73b2c94c8 --- /dev/null +++ b/PodioKit/1.0.0/PodioKit.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = 'PodioKit' + s.version = '1.0.0' + s.platform = :ios, '5.0' + s.source = { :git => 'https://github.com/podio/podio-ios.git', :tag => '1.0.0' } + + s.summary = "PodioKit is an iOS client library for the Podio API." + s.homepage = "https://developers.podio.com/clients/ios" + s.license = 'MIT' + s.author = { "Sebastian Rehnby" => "sebastian@podio.com" } + + s.source_files = 'PodioKit/**/*.{h,m}' + s.public_header_files = 'PodioKit/**/*.h' + s.prefix_header_file = 'PodioKit/PodioKit-Prefix.pch' + s.frameworks = 'CoreData' + s.requires_arc = true + + s.dependency 'ASIHTTPRequest', '1.8.1' +end