Skip to content

Commit

Permalink
Merge pull request #287 from MonsieurDart/master
Browse files Browse the repository at this point in the history
GData/YouTube, LOG_EXPR and NSLogger
  • Loading branch information
fabiopelosin committed Jul 5, 2012
2 parents 5fb8c97 + 17a57bb commit 8dc5464
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
24 changes: 24 additions & 0 deletions GData/1.9.1/GData.podspec
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = 'GData'
s.version = '1.9.1'
s.platform = :ios
s.license = { :type => 'Apache License, Version 2.0', :file => 'COPYING.txt' }
s.summary = "The Google data APIs provide a simple protocol for reading and "\
"writing data on the web. Many Google services provide a Google data API."
s.homepage = 'https://code.google.com/p/gdata-objectivec-client'
s.author = { 'The Google Data APIs team' => 'https://code.google.com/p/gdata-objectivec-client' }

s.source = { :svn => 'http://gdata-objectivec-client.googlecode.com/svn/tags/gdata-objectivec-client-1.9.1/' }
s.source_files = 'Source/ACL/*.{h,m}', 'Source/BaseClasses/*.{h,m}', 'Source/Elements/*.{h,m}',
'Source/Geo/*.{h,m}', 'Source/HTTPFetcher/*.{h,m}', 'Source/Introspection/*.{h,m}',
'Source/Media/*.{h,m}', 'Source/Networking/*.{h,m}', 'Source/OAuth2/*.{h,m}',
'Source/XMLSupport/*.{h,m}', 'Source/*.{h,m}'
s.libraries = 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }

s.subspec 'YouTube' do |gdyt|
gdyt.frameworks = 'CFNetwork', 'SystemConfiguration'
gdyt.source_files = 'Clients/YouTube/*.{h,m}', 'Clients/YouTube/Touch/*.{h,m}'
end

end
15 changes: 15 additions & 0 deletions LOG_EXPR/1.1/LOG_EXPR.podspec
@@ -0,0 +1,15 @@
Pod::Spec.new do |s|
s.name = 'LOG_EXPR'
s.version = '1.1'
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
s.summary = 'A modern, flexible logging tool.'
s.homepage = 'http://atelierdumobile.com'
s.author = { 'Mathieu Godart' => 'mathieu@atelierdumobile.com' }
s.source = { :git => 'https://github.com/MonsieurDart/LOG_EXPR.git', :tag => 'v1.1' }

s.description = 'LOG_EXPR(x) is a macro that prints out x, no matter what type x is, ' \
'without having to worry about format-strings. It works on Mac OS X and iOS. '\
'LOG_EXPR(x) is the work of Vincent Gable.'

s.source_files = '*.{h,m}'
end
17 changes: 17 additions & 0 deletions NSLogger/1.1/NSLogger.podspec
@@ -0,0 +1,17 @@
Pod::Spec.new do |s|
s.name = 'NSLogger'
s.version = '1.1'
s.license = 'BSD'
s.summary = 'A modern, flexible logging tool.'
s.homepage = 'https://github.com/fpillet/NSLogger'
s.author = { 'Florent Pillet' => 'fpillet@gmail.com' }
s.source = { :git => 'https://github.com/fpillet/NSLogger.git', :commit => '3253608026' }

s.description = 'NSLogger is a high perfomance logging utility which displays traces emitted by ' \
'client applications running on Mac OS X or iOS (iPhone OS). It replaces your ' \
'usual NSLog()-based traces and provides powerful additions like display ' \
'filtering, image and binary logging, traces buffering, timing information, etc.'

s.source_files = 'Client Logger/iOS/*.{h,m}'
s.frameworks = 'CFNetwork', 'SystemConfiguration'
end

0 comments on commit 8dc5464

Please sign in to comment.