forked from RxSwiftCommunity/RxNimble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxNimble.podspec
22 lines (20 loc) · 1023 Bytes
/
RxNimble.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "RxNimble"
s.version = "4.1.0"
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 = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/RxSwiftCommunity/RxNimble.git", :tag => s.version }
s.source_files = "Source/**/*.swift"
s.dependency "Nimble", "~> 7.0"
s.dependency "RxSwift", "~> 4.0"
s.dependency "RxBlocking", "~> 4.0"
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO', 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks"' }
end