forked from IanKeen/DropBear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDropBear.podspec
44 lines (27 loc) · 2.33 KB
/
DropBear.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
32
33
34
35
36
37
38
39
40
41
42
43
44
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.name = 'DropBear'
spec.version = '0.12.0'
spec.homepage = 'https://github.com/IanKeen/DropBear'
spec.summary = 'A marvellous UI testing framework.'
spec.description = <<-DESC
A marvellous UI testing framework.
Based on the robot pattern.
DESC
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = 'MIT'
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.author = { 'Ian Keen' => '[email protected]' }
spec.social_media_url = 'https://twitter.com/iankay'
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios, '10.0'
spec.swift_version = '5.1'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source = { git: "#{spec.homepage}.git", tag: spec.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = 'DropBear/**/*.swift'
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.framework = 'XCTest'
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.requires_arc = true
end