forked from elpassion/EarlGreySnapshots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEarlGreySnapshots.podspec
21 lines (18 loc) · 967 Bytes
/
EarlGreySnapshots.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'EarlGreySnapshots'
s.version = '0.0.4'
s.summary = 'EarlGrey action for snapshot testing.'
s.description = <<-DESC
EarlGrey actions for FBSnapshotTestCase. Provides functional tests counterpart for [Nimble Snapshots](https://github.com/ashfurrow/Nimble-Snapshots).
DESC
s.homepage = 'https://github.com/elpassion/EarlGreySnapshots'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'turekj' => '[email protected]' }
s.source = { :git => 'https://github.com/elpassion/EarlGreySnapshots.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/KubaTurek'
s.ios.deployment_target = '9.0'
s.source_files = 'EarlGreySnapshots/Classes/**/*'
s.frameworks = 'Foundation', 'XCTest'
s.dependency 'EarlGrey', '~> 1.12'
s.dependency 'FBSnapshotTestCase', '~> 2.1'
end