forked from Friend-LGA/LGAlertView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLGAlertView.podspec
26 lines (21 loc) · 977 Bytes
/
LGAlertView.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
Pod::Spec.new do |s|
s.name = 'LGAlertView'
s.version = '2.4.10'
s.platform = :ios, '8.0'
s.license = 'MIT'
s.homepage = 'https://github.com/Friend-LGA/LGAlertView'
s.author = { 'Grigory Lutkov' => '[email protected]' }
s.source = { :git => 'https://github.com/Friend-LGA/LGAlertView.git', :tag => s.version }
s.summary = 'Customizable implementation of UIAlertViewController, UIAlertView and UIActionSheet. All in one.'
s.description = 'Customizable implementation of UIAlertViewController, UIAlertView and UIActionSheet. All in one. ' \
'You can customize every detail. Make AlertView of your dream! :)'
s.requires_arc = true
s.default_subspec = 'App'
s.subspec 'App' do |app|
app.source_files = 'LGAlertView/*.{h,m}'
end
s.subspec 'Extension' do |extension|
extension.source_files = 'LGAlertView/*.{h,m}'
extension.xcconfig = { 'OTHER_CFLAGS' => '$(inherited) -DTARGET_IS_EXTENSION' }
end
end