forked from phimage/CallbackURLKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CallbackURLKit.podspec
36 lines (26 loc) · 1.96 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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "CallbackURLKit"
s.version = "1.0.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 = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.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
end