Created
October 11, 2013 08:59
-
-
Save shsteven/6931767 to your computer and use it in GitHub Desktop.
Sample Podspec for MCPanelViewController
This file contains 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 = 'MCPanelViewController' | |
s.version = '0.1' # modify accordingly | |
s.platform = :ios | |
s.summary = 'Drop-in panel control for iOS with blurring background and screen-edge activation gestures.' | |
s.homepage = 'https://github.com/mehsome/MCPanelViewController' | |
s.author = { 'Matthew Cheok' => '[email protected]' } | |
s.source = { :git => 'https://github.com/mehsome/MCPanelViewController.git', :branch => 'master', :tag => '0.1' } | |
s.description = 'Drop-in panel control for iOS with blurring background and screen-edge activation gestures.' | |
s.requires_arc = true | |
s.source_files = 'MCPanelViewController/MCPanelViewController.{h,m}', 'MCPanelViewController/MCPanelViewController.{h,m}', 'MCPanGestureRecognizer.{h,m}' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment