-
Notifications
You must be signed in to change notification settings - Fork 9k
Expand file tree
/
Copy pathNimble.podspec.json
More file actions
65 lines (65 loc) · 1.57 KB
/
Nimble.podspec.json
File metadata and controls
65 lines (65 loc) · 1.57 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "Nimble",
"version": "14.0.0",
"summary": "A Matcher Framework for Swift and Objective-C",
"description": "Use Nimble to express the expected outcomes of Swift or Objective-C expressions. Inspired by Cedar.",
"homepage": "https://github.com/Quick/Nimble",
"license": {
"type": "Apache 2.0",
"file": "LICENSE"
},
"authors": "Quick Contributors",
"platforms": {
"ios": "13.0",
"osx": "10.15",
"tvos": "13.0",
"watchos": "7.0",
"visionos": "1.0"
},
"source": {
"git": "https://github.com/Quick/Nimble.git",
"tag": "v14.0.0"
},
"source_files": [
"Sources/**/*.{swift,h,m,c}"
],
"header_dir": "Nimble",
"exclude_files": "Sources/Nimble/Adapters/NonObjectiveC/*.swift",
"weak_frameworks": "XCTest",
"requires_arc": true,
"compiler_flags": "-DPRODUCT_NAME=Nimble/Nimble",
"pod_target_xcconfig": {
"APPLICATION_EXTENSION_API_ONLY": "YES",
"DEFINES_MODULE": "YES",
"ENABLE_BITCODE": "NO",
"ENABLE_TESTING_SEARCH_PATHS": "YES",
"OTHER_LDFLAGS": "$(inherited) -weak-lXCTestSwiftSupport -Xlinker -no_application_extension",
"OTHER_SWIFT_FLAGS": "$(inherited) -suppress-warnings"
},
"osx": {
"dependencies": {
"CwlPreconditionTesting": [
"~> 2.2.0"
]
}
},
"ios": {
"dependencies": {
"CwlPreconditionTesting": [
"~> 2.2.0"
]
}
},
"visionos": {
"dependencies": {
"CwlPreconditionTesting": [
"~> 2.2.0"
]
}
},
"cocoapods_version": ">= 1.4.0",
"swift_versions": [
"5.0"
],
"swift_version": "5.0"
}