forked from Quick/Nimble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNimble.podspec
19 lines (18 loc) · 943 Bytes
/
Nimble.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "Nimble"
s.version = "2.0.0-rc.3"
s.summary = "A Matcher Framework for Swift and Objective-C"
s.description = <<-DESC
Use Nimble to express the expected outcomes of Swift or Objective-C expressions. Inspired by Cedar.
DESC
s.homepage = "https://github.com/Quick/Nimble"
s.license = { :type => "Apache 2.0", :file => "LICENSE.md" }
s.author = "Quick Contributors"
s.ios.deployment_target = "7.0"
s.osx.deployment_target = "10.9"
s.source = { :git => "https://github.com/Quick/Nimble.git", :tag => "v#{s.version}" }
s.source_files = "Nimble", "Nimble/**/*.{swift,h,m}"
s.weak_framework = "XCTest"
s.requires_arc = true
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO', 'OTHER_LDFLAGS' => '-weak-lswiftXCTest', 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks"' }
end