forked from sberrevoets/SDCAlertView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSDCAlertView.podspec
More file actions
19 lines (16 loc) · 956 Bytes
/
SDCAlertView.podspec
File metadata and controls
19 lines (16 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'SDCAlertView'
s.version = '0.11'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Scott Berrevoets' => 's.berrevoets@me.com' }
s.summary = 'SDCAlertView adds a contentView property to a pixel-for-pixel clone of UIAlertView'
s.homepage = 'https://github.com/Scott90/SDCAlertView'
# Source Info
s.platform = :ios, '6.0'
s.source = { :git => 'https://github.com/Scott90/SDCAlertView.git', :tag => "v#{s.version}" }
s.source_files = 'SDCAlertView/SDCAlertView.{h,m}', 'SDCAlertView/SDCAlertViewController.{h,m}', 'SDCAlertView/SDCAlertViewContentView.{h,m}', 'SDCAlertView/SDCAlertViewBackgroundView.{h,m}', 'SDCAlertView/SDCAlertViewWrapper.{h,m}', 'SDCAlertView/SDCAlertViewBackground.png', 'SDCAlertView/SDCAlertViewBackground@2x.png'
s.requires_arc = true
# Pod Dependencies
s.dependency 'SDCAutoLayout'
s.dependency 'RBBAnimation'
end