forked from okmr-d/DOAlertController
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDOAlertController.podspec
More file actions
14 lines (14 loc) · 874 Bytes
/
DOAlertController.podspec
File metadata and controls
14 lines (14 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Pod::Spec.new do |s|
s.name = "DOAlertController"
s.version = "2.0"
s.summary = "Simple Alert View written in Swift, which can be used as a UIAlertController replacement."
s.homepage = "https://github.com/spifd/DOAlertController"
s.screenshots = "https://raw.githubusercontent.com/okmr-d/okmr-d.github.io/master/img/DOAlertController/AlertScreenshot.png", "https://raw.githubusercontent.com/okmr-d/okmr-d.github.io/master/img/DOAlertController/ActionSheetScreenshot.png"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Daiki Okumura" => "daiki.okumura@gmail.com" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/spifd/DOAlertController.git", :tag => s.version.to_s }
s.source_files = "DOAlertController/**/*.swift"
s.framework = "UIKit"
s.requires_arc = true
end