forked from phimage/CallbackURLKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CallbackURLKit.podspec
41 lines (30 loc) · 2.08 KB
/
CallbackURLKit.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 |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "CallbackURLKit"
s.version = "2.3.0"
s.summary = "Implemenation of x-callback-url in swift"
s.homepage = "https://github.com/phimage/CallbackURLKit"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "phimage" => "[email protected]" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/phimage/CallbackURLKit.git", :tag => s.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.default_subspecs = 'Core'
s.subspec "Core" do |sp|
sp.source_files = "Sources/*.swift"
end
s.subspec "GoogleChrome" do |sp|
sp.source_files = "Clients/GoogleChrome.swift"
sp.dependency 'CallbackURLKit/Core'
end
s.subspec "Ulysses" do |sp|
sp.source_files = "Clients/Ulysses.swift"
sp.dependency 'CallbackURLKit/Core'
end
end