From 2e9323e90e270e5a81e0630c0ab0f5363a598c3e Mon Sep 17 00:00:00 2001
From: Philip Blackwell
Date: Thu, 4 Sep 2014 17:01:50 +1000
Subject: [PATCH] fixed podspec path?
---
AppbotX.podspec | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 AppbotX.podspec
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