-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathPKAlertController.podspec
44 lines (37 loc) · 2.21 KB
/
PKAlertController.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Be sure to run `pod lib lint PKAlertController.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "PKAlertController"
s.version = "0.6.0"
s.summary = "PKAlertController is a highly customizable alert view controller."
s.description = <<-DESC
PKAlertController is a flexible, highly customizable, many view transitional animation popup view controller.
* `PKAlertController` has the title and description label, and you can set a text alignment.
* Made with UIViewController-based, so that you can call it as the modal view controller, or add it to some view controller.
* There are many cutom view controller transitions.
* There are some layout styles, and it is the style of the size about the same as a UIAlertview, the flexible size and the fullscreen size.
* To customize UI Color theme, use the class that inherited `PKAlertDefaultTheme`.
* The view content is customizable to set a custom view same as a titleView of UINavigationItem.
DESC
s.homepage = "https://github.com/goodpatch/PKAlertController"
screenshot_url_prefix = "https://raw.githubusercontent.com/goodpatch/PKAlertController/master/"
s.screenshots = "#{screenshot_url_prefix}screenshotdefault.gif", "#{screenshot_url_prefix}screenshotwhiteblue.gif", "#{screenshot_url_prefix}screenshottransitions.gif"
s.license = 'MIT'
s.author = { "Satoshi Ohki" => "[email protected]" }
s.source = { :git => "https://github.com/goodpatch/PKAlertController.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'PKAlertController' => ['Pod/Assets/*.{png,storyboard,lproj}']
}
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'QuartzCore'
end