forked from IntrepidPursuits/swift-wisdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntrepid.podspec
28 lines (26 loc) · 1022 Bytes
/
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
Pod::Spec.new do |s|
s.name = "Intrepid"
s.version = "0.3.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 = { "Intrepid Pursuits" => "[email protected]" }
s.social_media_url = 'https://twitter.com/itpd'
s.source = { :git => "https://github.com/IntrepidPursuits/swift-wisdom.git", :tag => "#{s.version}" }
s.exclude_files = "tests/**/*"
s.platform = :ios
s.ios.deployment_target = "8.0"
s.default_subspec = "Core"
s.subspec "Core" do |cs|
cs.source_files = "SwiftWisdom/Core/**/**/*.swift"
cs.dependency 'IP-UIKit-Wisdom', '0.0.9'
end
s.subspec "Rx" do |rx|
rx.source_files = "SwiftWisdom/Rx/**/**/*.swift"
rx.dependency 'RxSwift', '~> 2.0'
rx.dependency 'RxCocoa', '~>2.0'
end
end