blob: f0b1b3a45be3169cead4d392d2687bae5c797417 [file] [log] [blame]
{
"name": "iOSSnapshotTestCase",
"module_name": "FBSnapshotTestCase",
"version": "6.0.0",
"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.0"
},
"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",
"swift_version": "4.2",
"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"
}
]
}