-
Notifications
You must be signed in to change notification settings - Fork 14
/
Intrepid.podspec
43 lines (41 loc) · 1.82 KB
/
Intrepid.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
41
42
43
Pod::Spec.new do |s|
s.name = "Intrepid"
s.version = "0.15.1"
s.summary = "Swift Bag"
s.description = <<-DESC
Collection of extensions and utility classes by and for the developers at Intrepid Pursuits.
DESC
s.homepage = "https://github.com/IntrepidPursuits/swift-wisdom"
s.license = "MIT"
s.authors = { "Logan Wright" => "[email protected]",
"Eric Peterson" => "[email protected]",
"Ying Quan Tan" => "[email protected]",
"Colden Prime" => "[email protected]",
"Ben Wu" => "[email protected]",
"Maya Saxena" => "[email protected]",
"Alex Persian" => "[email protected]",
"Tom O'Malley" => "[email protected]",
"Alan Scarpa" => "[email protected]",
"Paul Rolfe" => "[email protected]",
"Colin Tan" => "[email protected]",
"Stephen Wingchi Wong" => "[email protected]",
"Bob Gilmore" => "[email protected]"
}
s.social_media_url = 'https://twitter.com/intpd'
s.source = { :git => "https://github.com/IntrepidPursuits/swift-wisdom.git", :tag => "#{s.version}" }
s.exclude_files = "tests/**/*"
s.platform = :ios
s.ios.deployment_target = "10.0"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
s.default_subspec = "Core"
s.swift_versions = ['4.2', '5.0']
s.subspec "Core" do |cs|
cs.source_files = "SwiftWisdom/Core/**/**/*.swift"
cs.dependency 'IP-UIKit-Wisdom', '0.0.10'
end
s.subspec "Rx" do |rx|
rx.source_files = "SwiftWisdom/Rx/**/**/*.swift"
rx.dependency 'RxSwift', '~> 4.5'
rx.dependency 'RxCocoa', '~> 4.5'
end
end