-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathRxNimble.podspec
38 lines (33 loc) · 1.38 KB
/
RxNimble.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
Pod::Spec.new do |s|
s.name = "RxNimble"
s.version = "6.3.1"
s.summary = "Nimble extensions that making unit testing with RxSwift easier 🎉"
s.description = <<-DESC
This library includes functions that make testing RxSwift projects easier with Nimble.
DESC
s.homepage = "https://github.com/RxSwiftCommunity/RxNimble"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "RxSwiftCommunity" => "https://github.com/RxSwiftCommunity" }
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "10.15"
s.tvos.deployment_target = "13.0"
s.source = { :git => "https://github.com/RxSwiftCommunity/RxNimble.git", :tag => s.version }
s.default_subspec = "RxBlocking"
s.frameworks = "Foundation", "XCTest"
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO', 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks"' }
s.subspec "Core" do |ss|
ss.source_files = "Sources/RxNimble/Core/"
ss.dependency "Nimble", "~> 13.0"
ss.dependency "RxSwift", "~> 6.0"
end
s.subspec "RxBlocking" do |ss|
ss.source_files = "Sources/RxNimble/RxBlocking/"
ss.dependency "RxNimble/Core"
ss.dependency "RxBlocking"
end
s.subspec "RxTest" do |ss|
ss.source_files = "Sources/RxNimble/RxTest/"
ss.dependency "RxNimble/Core"
ss.dependency "RxTest"
end
end