GCDWebServer.podspec 614 B

123456789101112131415161718
  1. Pod::Spec.new do |s|
  2. s.name = 'GCDWebServer'
  3. s.version = '1.2'
  4. s.author = { 'Pierre-Olivier Latour' => 'info@pol-online.net' }
  5. s.license = { :type => 'BSD', :file => 'LICENSE' }
  6. s.homepage = 'https://github.com/swisspol/GCDWebServer'
  7. s.summary = 'Lightweight GCD based HTTP server for Mac OS X & iOS apps'
  8. s.source = { :git => 'https://github.com/swisspol/GCDWebServer.git', :tag => s.version.to_s }
  9. s.requires_arc = true
  10. s.source_files = 'CGDWebServer/*.{h,m}'
  11. s.ios.deployment_target = '5.0'
  12. s.osx.deployment_target = '10.7'
  13. s.ios.framework = 'MobileCoreServices'
  14. end