forked from levigroker/GRKAlertBlocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGRKAlertBlocks.podspec
More file actions
17 lines (17 loc) · 823 Bytes
/
GRKAlertBlocks.podspec
File metadata and controls
17 lines (17 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "GRKAlertBlocks"
s.version = "1.0.1"
s.summary = "A super simple UIAlertView category adding block syntax for button actions."
s.description = <<-DESC
Use as you would any other UIAlertView, but instantiation is now a class level message,
and adding a button can now take a block to be executed when tapped.
DESC
s.homepage = "https://github.com/levigroker/GRKAlertBlocks"
s.license = 'Creative Commons Attribution 3.0 Unported License'
s.author = { "Levi Brown" => "levigroker@gmail.com" }
s.source = { :git => "https://github.com/levigroker/GRKAlertBlocks.git", :tag => s.version.to_s }
s.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.source_files = 'GRKAlertBlocks/**/*.{h,m}'
s.requires_arc = true
end