forked from tuanphung/UIAlertControllerExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIAlertControllerExtension.podspec
More file actions
26 lines (18 loc) · 916 Bytes
/
Copy pathUIAlertControllerExtension.podspec
File metadata and controls
26 lines (18 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = "UIAlertControllerExtension"
s.version = "1.1"
s.summary = "An extension allow you present an alert with new UIAlertController from any ViewController quickly."
s.description = <<-DESC
Allow you present an UIAlertController with one of two styles (Alert or ActionSheet).
Quickly, Simply in use, and Event handling by closure.
DESC
s.homepage = "https://github.com/tuanphung/UIAlertControllerExtension"
s.license = "MIT"
s.author = { "Tuan Phung" => "tuanphunglk@gmail.com" }
s.social_media_url = "https://twitter.com/tuanphunglk"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/tuanphung/UIAlertControllerExtension.git", :tag => s.version }
s.source_files = "Source/*.swift"
s.framework = "UIKit"
s.requires_arc = true
end