-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlabber.podspec
More file actions
47 lines (35 loc) · 1.41 KB
/
Blabber.podspec
File metadata and controls
47 lines (35 loc) · 1.41 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
#
# Be sure to run `pod lib lint Blabber.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Blabber"
s.version = "1.1.11"
s.swift_version = '5.0'
s.summary = "iOS modular logger based on CocoaLumberjack."
s.homepage = "https://github.com/SysdataSpA/Blabber"
s.license = 'Apache 2.0'
s.author = { "Sysdata S.p.A." => "team.mobile@sysdata.it" }
s.source = { :git => 'https://github.com/SysdataSpA/Blabber.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '8.0'
# s.resource_bundles = {
# 'Blabber' => ['Blabber/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
s.subspec 'Core' do |co|
co.source_files = 'Blabber/Classes/Base/**/*'
co.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'BLABBER=1' }
end
s.subspec 'CocoaLumberjack' do |cl|
cl.source_files = 'Blabber/Classes/CocoaLumberjack/*'
cl.dependency 'Blabber/Core'
cl.dependency 'CocoaLumberjack', '~> 3.5.1'
cl.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'COCOALUMBERJACK=1' }
end
s.default_subspec = 'Core'
end