forked from justeat/JustLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JustLog.podspec
34 lines (27 loc) · 1.71 KB
/
JustLog.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
#
# Be sure to run `pod lib lint JustLog.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 = 'JustLog'
s.version = '2.6.0'
s.summary = 'JustLog brings logging on iOS to the next level. It supports console, file and remote Logstash logging via TCP socket with no effort.'
s.description = "<<-DESC
JustLog brings logging on iOS to the next level. It supports console, file and remote Logstash logging via TCP socket out of the box. You can setup JustLog to use [logz.io](http://logz.io) with no effort. JustLog relies on CocoaAsyncSocket and SwiftyBeaver, exposes a simple swifty API but it plays just fine also with Objective-C.
DESC"
s.homepage = 'https://github.com/justeat/JustLog'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.authors = { 'Just Eat iOS team' => '[email protected]', 'Alberto De Bortoli' => '[email protected]', 'Shabeer Hussain' => '[email protected]', 'Andre Jacobs' => '[email protected]' }
s.source = { :git => 'https://github.com/justeat/JustLog.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/justeat_tech'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '10.0'
s.swift_version = '5.0'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.source_files = 'JustLog/Classes/**/*', 'JustLog/Extensions/**/*'
s.dependency 'SwiftyBeaver', '~> 1.7.0'
s.dependency 'CocoaAsyncSocket', '~> 7.6.3'
end