forked from ca-archived/NBULog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
NBULog.podspec
37 lines (27 loc) · 1.32 KB
/
NBULog.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|
s.name = "NBULog"
s.version = "2.5.1"
s.summary = "Log framework based on CocoaLumberjack. Adds dynamic log levels, modules' support and eases usage."
s.homepage = "http://cyberagent.github.io/NBULog/"
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { "CyberAgent Inc." => "", "Ernesto Rivera" => "[email protected]" }
s.screenshots = [ "http://cyberagent.github.io/NBULog/images/xcodecolors.png",
"http://ptez.github.io/LumberjackConsole/images/screenshot2.png",
"http://ptez.github.io/LumberjackConsole/images/screenshot3.png" ]
s.source = { :git => "https://github.com/CyberAgent/NBULog.git", :tag => "#{s.version}" }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.swift_version = '4.2'
s.requires_arc = true
s.preserve_paths = "README.md", "NOTICE"
s.default_subspec = 'Base'
s.dependency 'CocoaLumberjack', '>= 3.x'
s.subspec 'Base' do |sub|
sub.source_files = 'Source/*.{h,m,swift}'
end
s.subspec 'Console' do |sub|
sub.platform = :ios
sub.dependency 'NBULog/Base'
sub.dependency 'LumberjackConsole', '>= 3.x'
end
end