[Add] BoostAI 1.1.28
[CocoaPods.git] / Specs / 5 / 2 / b / SnapshotTestCase / 3.0.0 / SnapshotTestCase.podspec.json
blob06447784aa83c99b8b0c4491759d534b76d58ac7
2   "name": "SnapshotTestCase",
3   "module_name": "FBSnapshotTestCase",
4   "version": "3.0.0",
5   "summary": "Snapshot view unit tests for iOS/MacOS",
6   "description": "A \"snapshot test case\" takes a configured UIView/NSView 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.",
7   "homepage": "https://github.com/albumprinter/snapshot-test-case",
8   "license": "MIT",
9   "authors": "Albelli",
10   "source": {
11     "git": "https://github.com/albumprinter/snapshot-test-case.git",
12     "tag": "3.0.0"
13   },
14   "platforms": {
15     "ios": "8.1",
16     "tvos": "9.0",
17     "osx": "10.10"
18   },
19   "requires_arc": true,
20   "ios": {
21     "frameworks": [
22       "XCTest",
23       "UIKit",
24       "Foundation",
25       "QuartzCore"
26     ]
27   },
28   "tvos": {
29     "frameworks": [
30       "XCTest",
31       "UIKit",
32       "Foundation",
33       "QuartzCore"
34     ]
35   },
36   "osx": {
37     "frameworks": [
38       "XCTest",
39       "AppKit",
40       "Foundation",
41       "QuartzCore"
42     ]
43   },
44   "pod_target_xcconfig": {
45     "ENABLE_BITCODE": "NO"
46   },
47   "user_target_xcconfig": {
48     "FRAMEWORK_SEARCH_PATHS": "$(PLATFORM_DIR)/Developer/Library/Frameworks"
49   },
50   "default_subspecs": "SwiftSupport",
51   "swift_version": "4.0",
52   "subspecs": [
53     {
54       "name": "Core",
55       "source_files": [
56         "FBSnapshotTestCase/**/*.{h,m}",
57         "FBSnapshotTestCase/*.{h,m}"
58       ],
59       "public_header_files": [
60         "FBSnapshotTestCase/FBSnapshotTestCase.h",
61         "FBSnapshotTestCase/FBSnapshotTestCasePlatform.h",
62         "FBSnapshotTestCase/FBSnapshotTestController.h"
63       ],
64       "ios": {
65         "private_header_files": [
66           "FBSnapshotTestCase/Categories/UIImage+Compare.h",
67           "FBSnapshotTestCase/Categories/UIImage+Diff.h",
68           "FBSnapshotTestCase/Categories/UIImage+Snapshot.h"
69         ],
70         "exclude_files": "FBSnapshotTestCase/Categories-macOS/*.{h,m}"
71       },
72       "tvos": {
73         "private_header_files": [
74           "FBSnapshotTestCase/Categories/UIImage+Compare.h",
75           "FBSnapshotTestCase/Categories/UIImage+Diff.h",
76           "FBSnapshotTestCase/Categories/UIImage+Snapshot.h"
77         ],
78         "exclude_files": "FBSnapshotTestCase/Categories-macOS/*.{h,m}"
79       },
80       "osx": {
81         "private_header_files": [
82           "FBSnapshotTestCase/Categories-macOS/NSImage+Compare.h",
83           "FBSnapshotTestCase/Categories-macOS/NSImage+Diff.h",
84           "FBSnapshotTestCase/Categories-macOS/NSImage+Snapshot.h"
85         ],
86         "exclude_files": "FBSnapshotTestCase/Categories/*.{h,m}"
87       }
88     },
89     {
90       "name": "SwiftSupport",
91       "dependencies": {
92         "SnapshotTestCase/Core": [
94         ]
95       },
96       "source_files": "FBSnapshotTestCase/**/*.swift"
97     }
98   ]