-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGTAlertCollection.podspec
18 lines (16 loc) · 1.03 KB
/
GTAlertCollection.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = "GTAlertCollection"
spec.version = "1.0.2"
spec.summary = "GTAlertCollection: UIAlertController variations gathered in one place, introducing new simplified usage."
spec.description = <<-DESC
GTAlertCollection is a Swift component that makes it possible to present alert controllers as easily as just calling a single method. Based on the `UIAlertController`, it implements and provides a variety of alert types.
DESC
spec.homepage = "https://github.com/gabrieltheodoropoulos/GTAlertCollection.git"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.authors = { "Gabriel Theodoropoulos" => "[email protected]" }
spec.social_media_url = "https://twitter.com/gabtheodor"
spec.platform = :ios, "10.0"
spec.source = { :git => "https://github.com/gabrieltheodoropoulos/GTAlertCollection.git", :tag => "1.0.2" }
spec.source_files = "GTAlertCollection/Source/*.{swift}"
spec.swift_version = "4.2"
end