forked from cashapp/stagehand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStagehandTesting.podspec
25 lines (19 loc) · 977 Bytes
/
StagehandTesting.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
Pod::Spec.new do |s|
s.name = 'StagehandTesting'
s.version = '2.1.0'
s.summary = 'Utilities for snapshot testing animations created using the Stagehand framework'
s.homepage = 'https://github.com/CashApp/Stagehand'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = 'Square'
s.source = { :git => 'https://github.com/CashApp/Stagehand.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.swift_version = '5.0.1'
s.source_files = 'Sources/StagehandTesting/**/*'
# The dependency on Stagehand is pinned to the same version as StagehandTesting. This is because
# StagehandTesting depends on internal methods inside Stagehand, so the normal rules of semantic
# versioning don't apply.
s.dependency 'Stagehand', s.version.to_s
s.dependency 'iOSSnapshotTestCase', '~> 6.1'
s.frameworks = 'XCTest'
s.weak_framework = 'XCTest'
end