-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathZAlertView.podspec
More file actions
18 lines (16 loc) · 844 Bytes
/
ZAlertView.podspec
File metadata and controls
18 lines (16 loc) · 844 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 = "ZAlertView"
s.version = "1.0.4"
s.summary = "A customizable AlertView written in Swift."
s.description = <<-DESC
A customizable AlertView written in Swift as a present for my 26th birthday. Of course, current libraries don't fit my need, so I have to rewrite one for later extensibility.
DESC
s.homepage = "https://github.com/zelic91/ZAlertView"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Thuong Nguyen" => "thuongnh.uit@gmail.com" }
s.source = { :git => "https://github.com/zelic91/ZAlertView.git", :tag => s.version.to_s }
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
end