-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathBackgroundUpload-CocoaLumberjack.podspec
More file actions
33 lines (29 loc) · 1.31 KB
/
BackgroundUpload-CocoaLumberjack.podspec
File metadata and controls
33 lines (29 loc) · 1.31 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
#
# Be sure to run `pod lib lint BackgroundUpload-CocoaLumberjack.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "BackgroundUpload-CocoaLumberjack"
s.version = "0.3.5"
s.summary = "Remote logging via NSURLSession transfer to upload NSLog logger logs to an HTTP server such as loggly."
# s.description = <<-DESC
# A LogFileManager that uses NSURLSession background transfer to upload files when they roll.
# DESC
s.homepage = "https://github.com/pushd/BackgroundUpload-CocoaLumberjack"
s.license = 'MIT'
s.author = { "Eric Jensen" => "ej@pushd.com" }
s.source = { :git => "https://github.com/pushd/BackgroundUpload-CocoaLumberjack.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ej'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'BackgroundUpload-CocoaLumberjack' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.dependency 'CocoaLumberjack'
end