-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRCAlertController.podspec
More file actions
20 lines (16 loc) · 1.01 KB
/
RCAlertController.podspec
File metadata and controls
20 lines (16 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'RCAlertController'
s.version = '0.1.1'
s.summary = 'A custom alert controller for iOS9+ applications.'
s.description = <<-DESC
A custom alert controller for iOS9+ applications. Highly customizible with simple API similar to Apple's UIAlertController. With an easy and powerful customization mechanism you can create beautiful alerts that fits into your app design. You can customize almost everything and even insert a custom view made by you for the alert.
DESC
s.homepage = 'https://github.com/rcarvalhosilva/RCAlertController'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Rodrigo Carvalho' => 'rcarvalho.dev@gmail.com' }
s.source = { :git => 'https://github.com/rcarvalhosilva/RCAlertController.git', :tag => '0.1.1'}
s.social_media_url = 'https://twitter.com/rcarvalho_94'
s.ios.deployment_target = '9.0'
s.source_files = 'RCAlertController/Classes/**/*'
s.frameworks = 'UIKit'
end