Skip to content

Instantly share code, notes, and snippets.

@zakdances
Last active December 26, 2015 23:19
Show Gist options
  • Save zakdances/7229566 to your computer and use it in GitHub Desktop.
Save zakdances/7229566 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'CocoaHTTPServer'
s.version = '2.4'
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' => 'cocoahttpserver@googlegroups.com' }
s.source = { :git => 'https://github.com/zakdances/CocoaHTTPServer.git', :tag => "#{s.version}" }
s.source_files = '{Core,Extensions}/**/*.{h,m}'
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
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"
s.dependency "CocoaLumberjack"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment