Skip to content

Instantly share code, notes, and snippets.

@hirogasa
Created January 22, 2016 07:25
Show Gist options
  • Save hirogasa/eff66023cf904dc76943 to your computer and use it in GitHub Desktop.
Save hirogasa/eff66023cf904dc76943 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "RMUniversalAlert"
s.version = "0.7"
s.summary = "Wrapper for UIAlertView / UIActionSheet / UIAlertController for targeting all iOS versions"
s.homepage = "https://github.com/yujiroarai/RMUniversalAlert"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Ryan Maxwell"
s.source = { :git => "https://github.com/yujiroarai/RMUniversalAlert.git", :tag => '0.7' }
s.source_files = 'RMUniversalAlert.{h,m}', 'RMPopoverPresentationController.{h,m}'
s.requires_arc = true
s.platform = 'ios', '6.0'
s.subspec 'Core' do |cs|
cs.dependency 'UIAlertView+Blocks', '>= 0.9'
cs.dependency 'UIActionSheet+Blocks', '>= 0.9'
cs.dependency 'UIAlertController+Blocks', '>= 0.9'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment