Skip to content

Instantly share code, notes, and snippets.

@rvenable
Created December 12, 2012 15:39
Show Gist options
  • Save rvenable/4268786 to your computer and use it in GitHub Desktop.
Save rvenable/4268786 to your computer and use it in GitHub Desktop.
CocoaHTTPServer that supports my custom CocoaLumberjack podspec
Pod::Spec.new do |s|
s.name = 'CocoaHTTPServer'
s.version = '2.2.1'
s.license = 'BSD'
s.summary = 'A small, lightweight, embeddable HTTP server for Mac OS X or iOS applications.'
s.homepage = 'https://github.com/robbiehanson/CocoaHTTPServer'
s.authors = { 'Robbie Hanson' => '[email protected]' }
s.source = { :git => 'https://github.com/robbiehanson/CocoaHTTPServer.git', :tag => '2.2.1' }
s.source_files = '{Core,Extensions}/**/*.{h,m}'
s.ios.frameworks = 'CFNetwork', 'Security'
s.osx.frameworks = 'CoreServices', 'Security'
s.library = 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
s.dependency "CocoaAsyncSocket", "~> 0.0.1"
s.dependency "CocoaLumberjack", ">= 1.3.0"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment