forked from nealyoung/NYAlertViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NYAlertViewController.podspec
20 lines (19 loc) · 1.01 KB
/
NYAlertViewController.podspec
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 = "NYAlertViewController"
s.version = "1.4.0"
s.summary = "Highly Customizable iOS Alert Views"
s.description = "Replacement for UIAlertController/UIAlertView with support for content views and UI customization"
s.homepage = "https://github.com/nealyoung/NYAlertViewController"
s.screenshots = "https://github.com/nealyoung/NYAlertViewController/raw/master/header.png"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Neal Young" => "[email protected]" }
s.social_media_url = "http://nealyoung.me"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/schmidt9/NYAlertViewController.git", :tag => "#{s.version}" }
s.source_files = "NYAlertViewController/*.{h,m}"
s.requires_arc = true
s.pod_target_xcconfig = {
# fix for "'sharedApplication' is unavailable: not available on iOS (App Extension)"
"APPLICATION_EXTENSION_API_ONLY" => "NO"
}
end