Skip to content

Instantly share code, notes, and snippets.

@shsteven
Created October 11, 2013 08:59
Show Gist options
  • Save shsteven/6931767 to your computer and use it in GitHub Desktop.
Save shsteven/6931767 to your computer and use it in GitHub Desktop.
Sample Podspec for MCPanelViewController
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' => 'your@email.address' }
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