-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDropBearSupport.podspec
41 lines (26 loc) · 2.16 KB
/
DropBearSupport.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
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios
spec.name = 'DropBearSupport'
spec.version = '0.14.1'
spec.homepage = 'https://github.com/IanKeen/DropBear'
spec.summary = 'An app-side companion to DropBear.'
spec.description = <<-DESC
An app-side companion to DropBear.
Allows for injecting a UI test configuration.
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 = 'Sources/DropBearSupport/**/*.swift'
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.requires_arc = true
end