-
Notifications
You must be signed in to change notification settings - Fork 12
/
SnapshotTesting-Nimble.podspec
36 lines (26 loc) · 990 Bytes
/
SnapshotTesting-Nimble.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
Pod::Spec.new do |s|
s.name = "SnapshotTesting-Nimble"
s.version = "0.1.0"
s.summary = "Nimble matchers for swift-snapshot-testing by pointfreeco"
s.description = <<-DESC
Implementation heavily inspired by Ash Furrow's wonderful Nimble-Snapshots.
DESC
s.homepage = "https://github.com/killectro/swift-snapshot-testing-nimble"
s.license = "MIT"
s.authors = {
"DJ Mitchell" => "[email protected]"
}
s.social_media_url = "https://twitter.com/killectro"
s.source = {
:git => "https://github.com/killectro/swift-snapshot-testing-nimble.git",
:tag => "0.1.0"
}
s.dependency "SnapshotTesting", "1.0.0"
s.dependency "Nimble"
s.swift_version = "4.2"
s.ios.deployment_target = "10.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "10.0"
s.frameworks = "XCTest"
s.source_files = ["SnapshotTesting-Nimble/Classes", "SnapshotTesting-Nimble/Classes/*.{h,m,swift}"]
end