-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Erik.podspec
47 lines (36 loc) · 2.58 KB
/
Erik.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
45
46
47
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "Erik"
s.version = "5.0.0"
s.summary = "A headless browser written in Swift"
s.description = <<-DESC
Erik is an headless browser based on WebKit and HTML parser Kanna.
An headless browser allow to run functional tests, to access and manipulate webpages.
DESC
s.homepage = "https://github.com/phimage/Erik"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "phimage" => "[email protected]" }
# ――― xcconfig ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.xcconfig = {
'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2',
'SWIFT_INCLUDE_PATHS' => '$(SRCROOT)/Kanna/Modules'
}
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.11'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/phimage/Erik.git", :tag => s.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.default_subspec = 'Core'
s.subspec "Core" do |sp|
sp.source_files = "Sources/*.swift"
end
s.subspec "Future" do |sp|
sp.source_files = "Sources/Future/*.swift"
sp.dependency 'Erik/Core'
sp.dependency 'BrightFutures'
end
s.dependency 'Kanna'
end