From 668d4d0483d107ef062aa41a99ddb8b27e7d7857 Mon Sep 17 00:00:00 2001 From: Mat Trudel Date: Mon, 22 Apr 2013 21:11:39 -0400 Subject: [PATCH] [Update] MTStackableNavigationController (0.4.6) --- .../MTStackableNavigationController.podspec | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 MTStackableNavigationController/0.4.6/MTStackableNavigationController.podspec diff --git a/MTStackableNavigationController/0.4.6/MTStackableNavigationController.podspec b/MTStackableNavigationController/0.4.6/MTStackableNavigationController.podspec new file mode 100644 index 00000000..ff931b95 --- /dev/null +++ b/MTStackableNavigationController/0.4.6/MTStackableNavigationController.podspec @@ -0,0 +1,22 @@ +Pod::Spec.new do |s| + s.name = "MTStackableNavigationController" + s.version = "0.4.6" + s.summary = "A drop-in replacement for UINavigationController with stacked views ala Path / Facebook." + s.description = <<-DESC + MTStackableNavigationController aims to be an API-compatible replacement for + UINavigationController, with special sauce for Facebook / Path style stacked + navigation. In contrast to most of the other view controller projects based on + this paradigm, MTStackableNavigationController is targeted exclusively for use + as a direct replacement for UINavigationController; layered navigation and deck + style interaction are already done well by other controllers. + DESC + s.homepage = "https://github.com/mtrudel/MTStackableNavigationController" + s.license = 'MIT' + s.author = { "Mat Trudel" => "mat@geeky.net" } + s.source = { :git => "https://github.com/mtrudel/MTStackableNavigationController.git", :tag => "0.4.6" } + s.platform = :ios, '5.0' + s.source_files = 'Classes', 'Classes/**/*.{h,m}' + s.framework = 'QuartzCore' + s.requires_arc = true + s.dependency 'MTCollectionOperators', '~> 0' +end