forked from AndriiDoroshko/SnappyShrimp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSnappyShrimp.podspec
More file actions
23 lines (20 loc) · 1.07 KB
/
Copy pathSnappyShrimp.podspec
File metadata and controls
23 lines (20 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'SnappyShrimp'
s.version = '1.6.2'
s.summary = 'New experience of Snapshot testing'
s.platform = :ios
s.swift_version = '4.2'
s.description = <<-DESC
A new, faster way of Snapshot testing. Helps to verify that your view and its layout looks exactly as you expect on all devices, in all orientations, including iPad multitasking mode support and iPhone X support with its specific design.
DESC
s.homepage = 'https://github.com/AndriiDoroshko/SnappyShrimp'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'RomanTysiachnik' => 'pot9ka@gmail.com' }
s.source = { :git => 'https://github.com/AndriiDoroshko/SnappyShrimp.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/Balavor'
s.ios.deployment_target = '9.0'
s.source_files = 'SnappyShrimp/Sources/**/*.swift'
s.resources = 'SnappyShrimp/Media.xcassets'
s.frameworks = 'UIKit', 'XCTest'
s.dependency 'iOSSnapshotTestCase', '~> 5.0'
end