mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-06 06:14:53 +00:00
17 lines
574 B
Ruby
17 lines
574 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'RoutingHTTPServer'
|
|
s.version = '1.0.0'
|
|
s.summary = 'A routing API for CocoaHTTPServer.'
|
|
s.homepage = 'https://github.com/mattstevens/RoutingHTTPServer'
|
|
s.license = 'MIT'
|
|
s.author = { 'Matt Stevens' => 'matt@alloysoft.com' }
|
|
s.source = { :git => 'https://github.com/mattstevens/RoutingHTTPServer.git', :tag => 'v1.0.0' }
|
|
s.source_files = 'Source'
|
|
|
|
s.requires_arc = true
|
|
s.ios.deployment_target = '4.0'
|
|
s.osx.deployment_target = '10.7'
|
|
|
|
s.dependency 'CocoaHTTPServer', '~> 2.3'
|
|
end
|