forked from indiegogo/KIF-Kiwi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KIF-Kiwi.podspec
31 lines (28 loc) · 1.08 KB
/
KIF-Kiwi.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
Pod::Spec.new do |s|
s.name = 'KIF-Kiwi'
s.version = '0.2.2'
s.summary = 'Enable Behaviour-Driven Integration Tests built on KIF using Kiwi syntax, supports Xcode 6.0'
s.description = <<-DESC
Write Kiwi specs to drive KIF actor through user interface actions.
* capture screenshots for failing tests
* share common setup using spec context
DESC
s.homepage = 'https://github.com/IndieGoGo/KIF-Kiwi'
s.license = 'MIT'
s.authors = {
'Indiegogo' => '[email protected]',
'Paul Zabelin' => '[email protected]',
'Irvin Zhan' => '[email protected]'
}
s.source = {
:git => 'https://github.com/IndieGoGo/KIF-Kiwi.git',
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/IndieGoGo'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.dependency 'Kiwi', '~> 2.3.0'
s.dependency 'KIF', '~> 3.0.7'
s.framework = 'XCTest'
end