-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathUIAlertView+Blocks.podspec
More file actions
20 lines (16 loc) · 910 Bytes
/
UIAlertView+Blocks.podspec
File metadata and controls
20 lines (16 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "UIAlertView+Blocks"
s.version = "0.9"
s.summary = "Category on UIAlertView to use inline block callbacks instead of delegate callbacks."
s.description = <<-DESC
UIAlertView was created in a time before blocks, ARC, and judging by its naming - touch screens too. Who “clicks” on an alert view anyway?
Lets modernize this shizzle with some blocks goodness.
DESC
s.homepage = "https://github.com/ryanmaxwell/UIAlertView-Blocks"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Ryan Maxwell"
s.platform = :ios, '4.3'
s.source = { :git => "https://github.com/ryanmaxwell/UIAlertView-Blocks.git", :tag => "0.9" }
s.source_files = 'UIAlertView+Blocks.{h,m}'
s.requires_arc = true
end