forked from ryanmaxwell/RMUniversalAlert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRMUniversalAlert.podspec
More file actions
18 lines (17 loc) · 806 Bytes
/
RMUniversalAlert.podspec
File metadata and controls
18 lines (17 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "RMUniversalAlert"
s.version = "0.6"
s.summary = "Wrapper for UIAlertView / UIActionSheet / UIAlertController for targeting all iOS versions"
s.homepage = "https://github.com/ryanmaxwell/RMUniversalAlert"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Ryan Maxwell"
s.source = { :git => "https://github.com/ryanmaxwell/RMUniversalAlert.git", :tag => '0.6' }
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.8'
cs.dependency 'UIActionSheet+Blocks', '>= 0.8'
cs.dependency 'UIAlertController+Blocks', '>= 0.8'
end
end