-
Notifications
You must be signed in to change notification settings - Fork 2
/
SwiftyBeaver-Destinations.podspec
32 lines (26 loc) · 1.23 KB
/
SwiftyBeaver-Destinations.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
Pod::Spec.new do |s|
s.name = 'SwiftyBeaver-Destinations'
s.version = '1.0.0'
s.summary = 'Additionals destinations 🔌 (LogEntries, Logmatic) and utilities for SwiftyBeaver.'
s.homepage = 'https://github.com/smartnsoft/SwiftyBeaver-Destinations'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Smart&Soft' => '[email protected]' }
s.source = { :git => 'https://github.com/smartnsoft/SwiftyBeaver-Destinations.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/smartnsoft'
s.default_subspec = 'Core'
s.ios.deployment_target = '9.0'
s.subspec 'Core' do |ss|
ss.source_files = 'SwiftyBeaver-Destinations/Classes/Utils/*.{swift,h,m}'
ss.dependency 'SwiftyBeaver', '~> 1.5'
end
s.subspec 'LogEntries' do |ss|
ss.source_files = 'SwiftyBeaver-Destinations/Classes/LogEntries/**/*.{swift,h,m}'
ss.dependency 'SwiftyBeaver-Destinations/Core'
ss.dependency 'iOSLogEntries', '~> 1.2'
end
s.subspec 'Logmatic' do |ss|
ss.source_files = 'SwiftyBeaver-Destinations/Classes/Logmatic/**/*.{swift,h,m}'
ss.dependency 'SwiftyBeaver-Destinations/Core'
ss.dependency 'Logmatic', '~> 1.0'
end
end