mirror of
https://github.com/mas-cli/mas
synced 2024-11-24 20:43:10 +00:00
⬆️ Quick (3.1.2)
This commit is contained in:
parent
e6222cf96c
commit
3c71388187
4 changed files with 12 additions and 4 deletions
|
@ -1,3 +1,3 @@
|
|||
github "Carthage/Commandant" "0.18.0"
|
||||
github "Quick/Nimble" "v9.0.0"
|
||||
github "Quick/Quick" "v3.1.0"
|
||||
github "Quick/Quick" "v3.1.2"
|
||||
|
|
|
@ -19,8 +19,11 @@ let package = Package(
|
|||
name: "QuickTests",
|
||||
dependencies: [ "Quick", "Nimble" ],
|
||||
exclude: [
|
||||
"QuickAfterSuiteTests/Info.plist",
|
||||
"QuickAfterSuiteTests/AfterSuiteTests+ObjC.m",
|
||||
"QuickFocusedTests/Info.plist",
|
||||
"QuickFocusedTests/FocusedTests+ObjC.m",
|
||||
"QuickTests/Info.plist",
|
||||
"QuickTests/FunctionalTests/ObjC",
|
||||
"QuickTests/Helpers/QCKSpecRunner.h",
|
||||
"QuickTests/Helpers/QCKSpecRunner.m",
|
||||
|
@ -36,11 +39,11 @@ let package = Package(
|
|||
#if os(macOS)
|
||||
targets.append(contentsOf: [
|
||||
.target(name: "QuickObjCRuntime", dependencies: []),
|
||||
.target(name: "Quick", dependencies: [ "QuickObjCRuntime" ]),
|
||||
.target(name: "Quick", dependencies: [ "QuickObjCRuntime" ], exclude: ["Info.plist"]),
|
||||
])
|
||||
#else
|
||||
targets.append(contentsOf: [
|
||||
.target(name: "Quick", dependencies: []),
|
||||
.target(name: "Quick", dependencies: [], exclude: ["Info.plist"]),
|
||||
])
|
||||
#endif
|
||||
return targets
|
||||
|
|
2
Carthage/Checkouts/Quick/Quick.podspec
vendored
2
Carthage/Checkouts/Quick/Quick.podspec
vendored
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = "Quick"
|
||||
s.version = "3.1.0"
|
||||
s.version = "3.1.2"
|
||||
s.summary = "The Swift (and Objective-C) testing framework."
|
||||
|
||||
s.description = <<-DESC
|
||||
|
|
5
Carthage/Checkouts/Quick/Sources/QuickObjCRuntime/include/QuickObjCRuntime.h
vendored
Normal file
5
Carthage/Checkouts/Quick/Sources/QuickObjCRuntime/include/QuickObjCRuntime.h
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
#if __has_include("QuickSpecBase.h")
|
||||
#import "QuickSpecBase.h"
|
||||
#else
|
||||
#import <QuickObjCRuntime/QuickSpecBase.h>
|
||||
#endif
|
Loading…
Reference in a new issue