forked from m1entus/MZFormSheetController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMZFormSheetController.podspec
More file actions
26 lines (23 loc) · 906 Bytes
/
MZFormSheetController.podspec
File metadata and controls
26 lines (23 loc) · 906 Bytes
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 = 'MZFormSheetController'
s.version = '3.1.3'
s.license = 'MIT'
s.summary = 'Provides an alternative to the native iOS UIModalPresentationFormSheet.'
s.homepage = 'https://github.com/m1entus/MZFormSheetController'
s.authors = 'Michał Zaborowski'
s.source = { :git => 'https://github.com/m1entus/MZFormSheetController.git', :tag => s.version.to_s }
s.default_subspec = 'Core'
s.requires_arc = true
s.deprecated_in_favor_of = 'MZFormSheetPresentationController'
s.dependency 'MZAppearance'
s.subspec "Core" do |sp|
sp.source_files = 'MZFormSheetController/*.{h,m}'
end
s.subspec "SVProgressHUD" do |sp|
sp.source_files = "MZFormSheetController+SVProgressHUD/*.{h,m}"
sp.dependency 'SVProgressHUD'
sp.dependency 'MZFormSheetController/Core'
end
s.platform = :ios, '6.1'
s.frameworks = 'QuartzCore', 'Accelerate'
end