forked from candostdagdeviren/CDAlertView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCDAlertView.podspec
More file actions
24 lines (20 loc) · 993 Bytes
/
CDAlertView.podspec
File metadata and controls
24 lines (20 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'CDAlertView'
s.version = '0.12.1'
s.summary = 'Highly customizable alert/notification/success/error/alarm popup'
s.description = <<-DESC
CDAlertView is highly customizable alert popup written in Swift 4.2. Usage is similar to UIAlertController.
DESC
s.homepage = 'https://github.com/ebaujard/CDAlertView'
s.screenshots = 'https://cloud.githubusercontent.com/assets/1971963/20238308/4bc1516e-a8e8-11e6-8e8b-c1a088f5daa0.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'ebaujard' => 'ebaujard@jouve.com' }
s.source = { :git => 'https://github.com/ebaujard/CDAlertView.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'CDAlertView/Classes/**/*'
s.swift_version = '4.0'
s.resource_bundles = {
'CDAlertView' => ['CDAlertView/Resources/Assets/*.*']
}
s.frameworks = 'UIKit'
end