forked from candostdagdeviren/CDAlertView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CDAlertView.podspec
25 lines (20 loc) · 1.04 KB
/
CDAlertView.podspec
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 = 'CDAlertView'
s.version = '0.2.0'
s.summary = 'Highly customizable alert/notification/success/error/alarm popup'
s.description = <<-DESC
CDAlertView is highly customizable alert popup written in Swift 3. Usage is similar to UIAlertController.
DESC
s.homepage = 'https://github.com/candostdagdeviren/CDAlertView'
s.screenshots = 'https://cloud.githubusercontent.com/assets/1971963/20238308/4bc1516e-a8e8-11e6-8e8b-c1a088f5daa0.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Candost Dagdeviren' => 'candostdagdeviren@gmail.com' }
s.source = { :git => 'https://github.com/candostdagdeviren/CDAlertView.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/candostdagdevrn'
s.ios.deployment_target = '9.0'
s.source_files = 'CDAlertView/Classes/**/*'
s.resource_bundles = {
'CDAlertView' => ['CDAlertView/Assets/Assets.xcassets']
}
s.frameworks = 'UIKit'
end