diff --git a/AppbotX.podspec b/AppbotX.podspec new file mode 100644 index 0000000..88a80b2 --- /dev/null +++ b/AppbotX.podspec @@ -0,0 +1,24 @@ +# +# Be sure to run `pod lib lint NAME.podspec' to ensure this is a +# valid spec and remove all comments before submitting the spec. +# +# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html +# +Pod::Spec.new do |s| + s.name = "AppbotX" + s.version = "0.5.5" + s.summary = "AppbotX is an Obj-C lib for the Appbot server." + s.description = <<-DESC + DESC + s.homepage = "http://appbot.co" + s.license = 'MIT' + s.author = { "Stuart Hall" => "stuartkhall@gmail.com" } + s.source = { :git => "http://github.com/blackp/appbotx.git", :tag => s.version.to_s } + s.social_media_url = 'https://twitter.com/stuartkhall' + s.resources = 'Classes/AppbotX.bundle' + + s.platform = :ios, '6.0' + s.requires_arc = true + + s.source_files = 'Classes/*.{h,m}', 'Classes/Models/*.{h,m}', 'Classes/Views/*.{h,m}', 'Classes/Controllers/*.{h,m}', 'Classes/Classes/*.{h,m}' +end