-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSwiftySwift.podspec
executable file
·40 lines (34 loc) · 1.15 KB
/
SwiftySwift.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
Pod::Spec.new do |s|
s.name = "SwiftySwift"
s.version = "3.1.0"
s.summary = "SwiftySwift is a collection of useful extensions for Swift types and Cocoa objects."
s.homepage = "https://github.com/adeca/SwiftySwift"
s.license = { :type => 'MIT' }
s.authors = { "Agustin de Cabrera" => "[email protected]" }
s.source = { :git => "https://github.com/adeca/SwiftySwift.git", :tag => s.version.to_s }
s.requires_arc = true
s.platform = :ios, '8.0'
s.ios.deployment_target = "8.0"
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '4.0',
'SWIFT_SWIFT3_OBJC_INFERENCE' => 'Off',
}
s.subspec 'Core' do |sub|
sub.source_files = 'SwiftyCore/*.swift'
end
s.subspec 'Cocoa' do |sub|
sub.source_files = 'SwiftyCocoa/*.swift'
sub.dependency 'SwiftySwift/Core'
end
s.subspec 'Geometry' do |sub|
sub.source_files = 'SwiftyGeometry/*.swift'
sub.dependency 'SwiftySwift/Core'
end
s.subspec 'UIKit' do |sub|
sub.source_files = 'SwiftyUIKit/*.swift'
sub.dependency 'SwiftySwift/Cocoa'
end
s.subspec 'MultiRange' do |sub|
sub.source_files = 'MultiRange/*.swift'
end
end