forked from pointfreeco/swift-snapshot-testing
-
Notifications
You must be signed in to change notification settings - Fork 15
/
SnapshotTesting.podspec
37 lines (28 loc) · 1017 Bytes
/
SnapshotTesting.podspec
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
Pod::Spec.new do |s|
s.name = "SnapshotTesting"
s.version = "1.8.1"
s.summary = "Tests that save and assert against reference data"
s.description = <<-DESC
Automatically record app data into test assertions. Snapshot tests capture
the entirety of a data structure and cover far more surface area than a
typical unit test.
DESC
s.homepage = "https://github.com/pointfreeco/swift-snapshot-testing"
s.license = "MIT"
s.authors = {
"Stephen Celis" => "[email protected]",
"Brandon Williams" => "[email protected]"
}
s.social_media_url = "https://twitter.com/pointfreeco"
s.source = {
:git => "https://github.com/pointfreeco/swift-snapshot-testing.git",
:tag => s.version
}
s.swift_versions = "5.0", "5.1.2", "5.2"
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "10.0"
s.frameworks = "XCTest"
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
s.source_files = "Sources", "Sources/**/*.swift"
end