-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathChivy.podspec
More file actions
36 lines (29 loc) · 1.18 KB
/
Chivy.podspec
File metadata and controls
36 lines (29 loc) · 1.18 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
Pod::Spec.new do |s|
s.name = "Chivy"
s.version = "0.5.0"
s.summary = "iOS web browser control which looks and behaves like modern Safari and is highly customizable"
s.homepage = "https://github.com/DZamataev/Chivy"
s.screenshots = "https://raw.githubusercontent.com/DZamataev/Chivy/master/Chivy-0.2.0-iPhone-screenshot.png"
s.license = 'MIT'
s.author = { "Denis Zamataev" => "denis.zamataev@gmail.com" }
s.source = { :git => "https://github.com/DZamataev/Chivy.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/dzamataev'
s.platform = :ios, '7.0'
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'Core' do |c|
c.requires_arc = true
c.source_files = 'Pod/Classes/*'
c.resources = 'Pod/Assets/*'
c.dependency 'Chivy/Core-no-arc'
c.dependency 'NJKWebViewProgress'
c.dependency 'AutoScrollLabel'
c.dependency 'DKNavbarBackButton'
c.dependency 'ARChromeActivity'
c.dependency 'ARSafariActivity'
end
s.subspec 'Core-no-arc' do |cna|
cna.requires_arc = false
cna.source_files = 'Pod/Classes-no-arc/*'
end
end