forked from parski/SnapshotTest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSnapshotTest.podspec
More file actions
16 lines (16 loc) · 931 Bytes
/
Copy pathSnapshotTest.podspec
File metadata and controls
16 lines (16 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "SnapshotTest"
s.version = "2.1.0"
s.summary = "Snapshot testing tool for iOS and tvOS"
s.description = "SnapshotTest is a simple view testing tool written completely in Swift to aid with development for Apple platforms. It's like unit testing for views."
s.homepage = "https://github.com/parski/SnapshotTest"
s.license = { :type => "2-clause BSD", :file => "LICENSE" }
s.author = { "Pär Strindevall" => "par@strindevall.com", "André Stenvall" => "andre@stenvall.me" }
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/parski/SnapshotTest.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation", "XCTest"
# Workaround for Xcode 10 dynamic library bug: http://ileyf.cn.openradar.appspot.com/43701006
s.pod_target_xcconfig = { 'ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES' => 'YES' }
end