-
Notifications
You must be signed in to change notification settings - Fork 520
Expand file tree
/
Copy pathiOSSnapshotTestCase.podspec.json
More file actions
60 lines (59 loc) · 1.76 KB
/
iOSSnapshotTestCase.podspec.json
File metadata and controls
60 lines (59 loc) · 1.76 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
{
"name": "iOSSnapshotTestCase",
"module_name": "FBSnapshotTestCase",
"version": "6.0.2",
"summary": "Snapshot view unit tests for iOS",
"description": "A \"snapshot test case\" takes a configured UIView or CALayer\nand uses the renderInContext: method to get an image snapshot\nof its contents. It compares this snapshot to a \"reference image\"\nstored in your source code repository and fails the test if the\ntwo images don't match.",
"homepage": "https://github.com/uber/ios-snapshot-test-case",
"license": "MIT",
"authors": "Uber",
"source": {
"git": "https://github.com/uber/ios-snapshot-test-case.git",
"tag": "6.0.2"
},
"platforms": {
"ios": "10.0",
"tvos": "9.0"
},
"requires_arc": true,
"frameworks": [
"XCTest",
"UIKit",
"Foundation",
"QuartzCore"
],
"pod_target_xcconfig": {
"ENABLE_BITCODE": "NO"
},
"user_target_xcconfig": {
"FRAMEWORK_SEARCH_PATHS": "$(PLATFORM_DIR)/Developer/Library/Frameworks"
},
"default_subspecs": "SwiftSupport",
"subspecs": [
{
"name": "Core",
"source_files": [
"FBSnapshotTestCase/**/*.{h,m}",
"FBSnapshotTestCase/*.{h,m}"
],
"public_header_files": [
"FBSnapshotTestCase/FBSnapshotTestCase.h",
"FBSnapshotTestCase/FBSnapshotTestCasePlatform.h",
"FBSnapshotTestCase/FBSnapshotTestController.h"
],
"private_header_files": [
"FBSnapshotTestCase/Categories/UIImage+Compare.h",
"FBSnapshotTestCase/Categories/UIImage+Diff.h",
"FBSnapshotTestCase/Categories/UIImage+Snapshot.h"
]
},
{
"name": "SwiftSupport",
"dependencies": {
"iOSSnapshotTestCase/Core": [
]
},
"source_files": "FBSnapshotTestCase/**/*.swift"
}
]
}