Skip to content

Commit

Permalink
[Update] LibComponentLogging-NSLog 1.0.4 - 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aharren committed Aug 26, 2012
1 parent 8accdda commit 4f2ceef
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 31 deletions.
42 changes: 31 additions & 11 deletions LibComponentLogging-NSLog/1.0.2/LibComponentLogging-NSLog.podspec
Original file line number Original file line Diff line number Diff line change
@@ -1,16 +1,36 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'LibComponentLogging-NSLog'
s.version = '1.0.2'
s.license = 'MIT'
s.summary = 'LibComponentLogging-NSLog is a simple LibComponentLogging logger implementation which redirects logging to NSLog.'
s.homepage = 'http://0xc0.de/LibComponentLogging'
s.author = { 'Arne Harren' => 'ah@0xc0.de' }
s.source = { :git => 'https://github.com/aharren/LibComponentLogging-NSLog.git', :tag => '1.0.2' }


s.description = 'LibComponentLogging is a small open source logging library for Objective-C applications on Mac OS X and iPhone OS / iOS which provides conditional logging based on log levels and log components. Additionally, different logging strategies can be used, e.g. writing log messages to a file or sending them to the system log, while using the same logging interface.' s.name = 'LibComponentLogging-NSLog'
s.version = '1.0.2'
s.source = { :git => 'https://github.com/aharren/LibComponentLogging-NSLog.git',
:tag => '1.0.2' }

s.homepage = 'http://0xc0.de/LibComponentLogging'
s.author = { 'Arne Harren' => 'ah@0xc0.de' }
s.license = 'MIT'

s.summary = 'LibComponentLogging logging back-end which redirects ' \
'logging to NSLog.'
s.description = 'LibComponentLogging-NSLog is a very simple logging ' \
'back-end for LibComponentLogging which redirects log ' \
'messages to NSLog, but adds information about the log ' \
'level, the log component, and the log statement\'s ' \
'location (file name and line number).'

s.source_files = 'LCLNSLog*.{h,m}'


s.dependency 'LibComponentLogging-Core', '>= 1.1.4' s.dependency 'LibComponentLogging-Core', '>= 1.1.4'
s.source_files = 'LCLNSLog.{h,m}'
s.header_dir = 'LibComponentLogging'
end


def s.post_install(target)
if not (config.respond_to? :lcl_config and config.lcl_config) then
# LibComponentLogging-pods configuration is not available
return
end

config.lcl_config.configure_logger(
:name => 'NSLog',
:header => 'LCLNSLog.h'
)
end

end
40 changes: 30 additions & 10 deletions LibComponentLogging-NSLog/1.0.3/LibComponentLogging-NSLog.podspec
Original file line number Original file line Diff line number Diff line change
@@ -1,16 +1,36 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'LibComponentLogging-NSLog'
s.version = '1.0.3'
s.license = 'MIT'
s.summary = 'LibComponentLogging-NSLog is a simple LibComponentLogging logger implementation which redirects logging to NSLog.'
s.homepage = 'http://0xc0.de/LibComponentLogging'
s.author = { 'Arne Harren' => 'ah@0xc0.de' }
s.source = { :git => 'https://github.com/aharren/LibComponentLogging-NSLog.git', :tag => '1.0.3' }


s.description = 'LibComponentLogging is a small logging library for Objective-C applications on Mac OS X and the iPhone OS which provides conditional logging based on log levels and log components. Additionally, different logging strategies can be used, e.g. writing log messages to a file or sending them to the system log, while using the same logging interface.' s.name = 'LibComponentLogging-NSLog'
s.version = '1.0.3'
s.source = { :git => 'https://github.com/aharren/LibComponentLogging-NSLog.git',
:tag => '1.0.3' }


s.source_files = 'LCLNSLog.{h,m}' s.homepage = 'http://0xc0.de/LibComponentLogging'
s.header_dir = 'LibComponentLogging' s.author = { 'Arne Harren' => 'ah@0xc0.de' }
s.license = 'MIT'

s.summary = 'LibComponentLogging logging back-end which redirects ' \
'logging to NSLog.'
s.description = 'LibComponentLogging-NSLog is a very simple logging ' \
'back-end for LibComponentLogging which redirects log ' \
'messages to NSLog, but adds information about the log ' \
'level, the log component, and the log statement\'s ' \
'location (file name and line number).'

s.source_files = 'LCLNSLog*.{h,m}'


s.dependency 'LibComponentLogging-Core', '>= 1.1.5' s.dependency 'LibComponentLogging-Core', '>= 1.1.5'

def s.post_install(target)
if not (config.respond_to? :lcl_config and config.lcl_config) then
# LibComponentLogging-pods configuration is not available
return
end

config.lcl_config.configure_logger(
:name => 'NSLog',
:header => 'LCLNSLog.h'
)
end

end end
40 changes: 30 additions & 10 deletions LibComponentLogging-NSLog/1.0.4/LibComponentLogging-NSLog.podspec
Original file line number Original file line Diff line number Diff line change
@@ -1,16 +1,36 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'LibComponentLogging-NSLog'
s.version = '1.0.4'
s.license = 'MIT'
s.summary = 'LibComponentLogging-NSLog is a simple LibComponentLogging logger implementation which redirects logging to NSLog.'
s.homepage = 'http://0xc0.de/LibComponentLogging'
s.author = { 'Arne Harren' => 'ah@0xc0.de' }
s.source = { :git => 'https://github.com/aharren/LibComponentLogging-NSLog.git', :tag => '1.0.4' }


s.description = 'LibComponentLogging is a small logging library for Objective-C applications on Mac OS X and the iPhone OS which provides conditional logging based on log levels and log components. Additionally, different logging strategies can be used, e.g. writing log messages to a file or sending them to the system log, while using the same logging interface.' s.name = 'LibComponentLogging-NSLog'
s.version = '1.0.4'
s.source = { :git => 'https://github.com/aharren/LibComponentLogging-NSLog.git',
:tag => '1.0.4' }


s.source_files = 'LCLNSLog.{h,m}' s.homepage = 'http://0xc0.de/LibComponentLogging'
s.header_dir = 'LibComponentLogging' s.author = { 'Arne Harren' => 'ah@0xc0.de' }
s.license = 'MIT'

s.summary = 'LibComponentLogging logging back-end which redirects ' \
'logging to NSLog.'
s.description = 'LibComponentLogging-NSLog is a very simple logging ' \
'back-end for LibComponentLogging which redirects log ' \
'messages to NSLog, but adds information about the log ' \
'level, the log component, and the log statement\'s ' \
'location (file name and line number).'

s.source_files = 'LCLNSLog*.{h,m}'


s.dependency 'LibComponentLogging-Core', '>= 1.1.6' s.dependency 'LibComponentLogging-Core', '>= 1.1.6'

def s.post_install(target)
if not (config.respond_to? :lcl_config and config.lcl_config) then
# LibComponentLogging-pods configuration is not available
return
end

config.lcl_config.configure_logger(
:name => 'NSLog',
:header => 'LCLNSLog.h'
)
end

end end

0 comments on commit 4f2ceef

Please sign in to comment.