-
Notifications
You must be signed in to change notification settings - Fork 0
/
Datalog.podspec
40 lines (25 loc) · 2.17 KB
/
Datalog.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
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.name = 'Datalog'
spec.version = '0.5.0'
spec.homepage = 'https://github.com/MatCartmill/Datalog'
spec.summary = 'An open-source iOS framework for HTTP(S) logging with Datadog. Written in Swift.'
spec.description = <<-DESC
An open-source iOS framework for HTTP(S) logging with Datadog.
Written in Swift.
DESC
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = 'MIT'
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.author = { 'Mathew Cartmill' => '[email protected]' }
spec.social_media_url = 'https://twitter.com/matcartmill'
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios, '11.0'
spec.swift_version = '5.0'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source = { git: "#{spec.homepage}.git", tag: spec.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = 'Datalog/**/*.swift'
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.requires_arc = true
end