From 24627756efef71c7cbc57438672a6fb6e6f16783 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20M=C3=BCller?= Date: Sun, 5 May 2013 11:33:21 +0200 Subject: [PATCH] add BMExtendablePageController podspec --- .../0.1.0/BMExtendablePageController.podspec | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 BMExtendablePageController/0.1.0/BMExtendablePageController.podspec diff --git a/BMExtendablePageController/0.1.0/BMExtendablePageController.podspec b/BMExtendablePageController/0.1.0/BMExtendablePageController.podspec new file mode 100644 index 00000000000000..ac12b0552811cf --- /dev/null +++ b/BMExtendablePageController/0.1.0/BMExtendablePageController.podspec @@ -0,0 +1,24 @@ +# Be sure to run `pod spec lint BMExtendablePageController.podspec' to ensure this is a +Pod::Spec.new do |s| + s.name = "BMExtendablePageController" + s.version = "0.1.0" + s.summary = "An UIPageController replacement supporting custom and continuous transitions." + s.description = <<-DESC + A replacement for UIPageController / NSPageController, because we need custom transitions!\ + BMExtPageController is a drop in - replacement and mirrors almost all functionalities found in UIPageController so if you’ve been starting a project already and you feel limited with default transition styles and behavior offered - give BMExtPageController a try. + DESC + + s.homepage = "https://github.com/elchbenny/BMExtPageController" + s.license = 'MIT' + s.author = { "Benjamin Müller" => "elchbenny@googlemail.com" } + s.source = { :git => "https://github.com/elchbenny/BMExtPageController.git", :tag => "0.1.0" } + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.source_files = 'BMExtendablePageController', 'BMExtendablePageController/**/*.{h,m}' + + s.framework = 'QuartzCore' + + s.requires_arc = true +end