forked from IntrepidPursuits/swift-wisdom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntrepid.podspec
More file actions
42 lines (40 loc) · 1.78 KB
/
Copy pathIntrepid.podspec
File metadata and controls
42 lines (40 loc) · 1.78 KB
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
Pod::Spec.new do |s|
s.name = "Intrepid"
s.version = "0.11.0"
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" => "logan@intrepid.io",
"Eric Peterson" => "eric@intrepid.io",
"Ying Quan Tan" => "ying@intrepid.io",
"Colden Prime" => "colden@intrepid.io",
"Ben Wu" => "ben@intrepid.io",
"Maya Saxena" => "maya@intrepid.io",
"Alex Persian" => "alex@intrepid.io",
"Tom O'Malley" => "tom@intrepid.io",
"Alan Scarpa" => "alan@intrepid.io",
"Paul Rolfe" => "paul@intrepid.io",
"Colin Tan" => "ctan@intrepid.io",
"Stephen Wingchi Wong" => "stephenwong@intrepid.io",
"Bob Gilmore" => "bgilmore@intrepid.io"
}
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 = "9.0"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' }
s.default_subspec = "Core"
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.3'
rx.dependency 'RxCocoa', '~> 4.3'
end
end