-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCrayWebViewController.podspec
More file actions
50 lines (47 loc) · 1.89 KB
/
Copy pathCrayWebViewController.podspec
File metadata and controls
50 lines (47 loc) · 1.89 KB
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
48
49
50
Pod::Spec.new do |s|
s.name = "CrayWebViewController"
s.version = "0.7.7"
s.summary = "Easy to use commonplace UIWebViewController."
s.homepage = "https://github.com/plusr/CrayWebViewController"
s.screenshots = "http://gyazo.com/88c8b0a4d606815f813d7728b66a0e91.gif"
s.license = {
:type => "MIT",
:file => "LICENSE"
}
s.author = {"azu" => "info@efcl.info"}
s.platform = :ios, '6.0'
s.source = {
:git => "https://github.com/plusr/CrayWebViewController.git",
:tag => s.version.to_s
}
s.requires_arc = true
s.subspec 'Core' do |a|
a.dependency "NJKWebViewProgress"
a.source_files = "Lib/CrayTabWebViewController/*.{h,m}"
end
s.subspec 'CrayNavigationController' do |a|
a.source_files = 'Lib/CrayNavigationController/*.{h,m}'
end
s.subspec 'CrayBundleSupport' do |a|
a.resources = ["Lib/**/*.bundle"]
a.source_files = 'Lib/CrayBundleSupport/*.{h,m}'
end
s.subspec 'CrayStandaloneWebViewController' do |a|
a.resources = ["Lib/CrayStandaloneWebViewController/*.storyboard"]
a.source_files = 'Lib/CrayStandaloneWebViewController/*.{h,m}'
a.dependency 'CrayWebViewController/Core'
a.dependency "TUSafariActivity"
end
s.subspec 'CrayAllInOneBackWebViewController' do |a|
a.resources = ["Lib/CrayAllInOneBackWebViewController/*.storyboard"]
a.source_files = 'Lib/CrayAllInOneBackWebViewController/*.{h,m}'
a.dependency 'CrayWebViewController/CrayStandaloneWebViewController'
a.dependency 'CrayWebViewController/CrayBundleSupport'
end
s.subspec 'CrayModalWebViewController' do |a|
a.resources = ["Lib/CrayModalWebViewController/*.storyboard"]
a.source_files = 'Lib/CrayModalWebViewController/*.{h,m}'
a.dependency 'CrayWebViewController/CrayAllInOneBackWebViewController'
a.dependency 'CrayWebViewController/CrayNavigationController'
end
end