-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFlat-Alert.podspec
More file actions
25 lines (18 loc) · 1.1 KB
/
Flat-Alert.podspec
File metadata and controls
25 lines (18 loc) · 1.1 KB
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
Pod::Spec.new do |s|
s.name = "Flat-Alert"
s.version = "1.0.0"
s.summary = "A simple, lightweight, flat alternative to UIAlertController written in Swift for iOS"
s.description = <<-DESC
Flat Alert is an iOS drop-in framework that displays a modern, flat style
alert with a number of avalibale options to customise the appearance.
Flat Alert is meant as a replacement for the undocumented, private UIKit UIAlertController.
DESC
s.homepage = "https://github.com/jesster2k10/Flat-Alert"
s.screenshots = "http://i.imgur.com/2K3Muml.png", "http://i.imgur.com/4QSDh0P.png", "http://i.imgur.com/LUR8Vec.png"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Jesse Onolememen" => "jesse.ono105@gmail.com" }
s.ios.deployment_target = '9.0'
s.source = { :git => "https://github.com/jesster2k10/Flat-Alert.git", :tag => s.version.to_s }
s.source_files = "FlatAlert/Library/*.swift", "FlatAlert/*.h"
s.resources = "FlatAlert/*.plist", "FlatAlert/Library/*.xib"
end