Last active
December 10, 2015 22:29
-
-
Save kukat/4502862 to your computer and use it in GitHub Desktop.
MHTabBarController.podspec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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