From a45e3e30041b68b5539e91b55b06c9353fc38f7b Mon Sep 17 00:00:00 2001 From: Alexsander Akers Date: Fri, 1 Feb 2013 00:27:40 -0500 Subject: [PATCH] Add podspec Signed-off-by: Alexsander Akers --- objc-TimesSquare.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 objc-TimesSquare.podspec diff --git a/objc-TimesSquare.podspec b/objc-TimesSquare.podspec new file mode 100644 index 0000000..c2fed9c --- /dev/null +++ b/objc-TimesSquare.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "objc-TimesSquare" + s.version = "1.0.0" + s.summary = "TimesSquare is an Objective-C calendar view for your apps." + s.homepage = "https://github.com/square/objc-TimesSquare" + s.license = 'Apache License, Version 2.0' + s.author = { "Square" => "http://squareup.com" } + s.source = { :git => "https://github.com/square/objc-TimesSquare.git", :branch => "master" } + s.platform = :ios, '5.0' + s.source_files = 'TimesSquare/*.{h,m}' + s.requires_arc = true +end