forked from egmoll7/EMAlertController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEMAlertController.podspec
More file actions
19 lines (15 loc) · 887 Bytes
/
EMAlertController.podspec
File metadata and controls
19 lines (15 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'EMAlertController'
s.version = '1.0.2'
s.summary = 'Elegant alert view controller alternative for iOS'
s.description = <<-DESC
EMAlertController is a beautiful alternative to the stock iOS UIAlertController. This library is fully customizable with an implementation like the native UIAlertController.
DESC
s.homepage = 'https://github.com/egmoll7/EMAlertController'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Eduardo Moll' => 'egmoll7@gmail.com' }
s.social_media_url = "http://twitter.com/egmoll7"
s.source = { :git => 'https://github.com/egmoll7/EMAlertController.git', :tag => s.version }
s.ios.deployment_target = '9.0'
s.source_files = 'EMAlertController/EMAlertController/**/*'
end