Skip to content

Instantly share code, notes, and snippets.

@kukat
Last active December 10, 2015 22:29
Show Gist options
  • Save kukat/4502862 to your computer and use it in GitHub Desktop.
Save kukat/4502862 to your computer and use it in GitHub Desktop.
MHTabBarController.podspec
Pod::Spec.new do |s|
s.name = "MHTabBarController"
s.version = "1.0.0"
s.summary = "A custom tab bar controller for iOS 5."
s.description = <<-DESC
This is a custom container view controller for iOS 5 that works just like a regular UITabBarController, except the tabs are at the top and look different.
DESC
s.homepage = "http://www.hollance.com/2011/11/mhtabbarcontroller-a-custom-tab-bar-for-ios-5-using-the-new-container-apis/"
s.license = { :type => 'MIT', :text => 'The MHTabBarController source code is copyright 2011 Matthijs Hollemans and is licensed under the terms of the MIT license.' }
s.author = { "Matthijs Hollemans" => "[email protected]" }
s.source = { :git => "https://github.com/hollance/MHTabBarController.git", :tag=>'1.0.0'}
s.platform = :ios, '5.0'
s.source_files = 'MHTabBarController/MHTabBarController.*'
# s.resource = "MHTabBarController/*.png"
s.requires_arc = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment