1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00
rest-client--rest-client/rest-client.gemspec

80 lines
2.8 KiB
Ruby
Raw Normal View History

2009-06-20 18:19:56 -04:00
# -*- encoding: utf-8 -*-
2008-06-26 08:07:50 -04:00
Gem::Specification.new do |s|
2010-01-26 12:57:48 -05:00
s.name = %q{rest-client}
2010-07-24 06:45:23 -04:00
s.version = "1.6.1"
2009-06-20 18:19:56 -04:00
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Adam Wiggins", "Julien Kirch"]
2010-07-24 06:45:23 -04:00
s.date = %q{2010-07-24}
2009-06-20 18:19:56 -04:00
s.default_executable = %q{restclient}
s.description = %q{A simple Simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.}
2009-12-28 12:06:52 -05:00
s.email = %q{rest.client@librelist.com}
2009-06-20 18:19:56 -04:00
s.executables = ["restclient"]
s.extra_rdoc_files = [
2010-05-16 11:58:05 -04:00
"README.rdoc", "history.md"
2009-06-20 18:19:56 -04:00
]
s.files = [
2010-05-16 11:58:05 -04:00
"README.rdoc",
"Rakefile",
"VERSION",
"bin/restclient",
"lib/rest_client.rb",
"lib/rest-client.rb",
2010-05-16 11:58:05 -04:00
"lib/restclient.rb",
"lib/restclient/exceptions.rb",
"lib/restclient/abstract_response.rb",
"lib/restclient/net_http_ext.rb",
"lib/restclient/payload.rb",
"lib/restclient/raw_response.rb",
"lib/restclient/request.rb",
"lib/restclient/resource.rb",
"lib/restclient/response.rb",
"spec/base.rb",
"spec/exceptions_spec.rb",
"spec/integration_spec.rb",
"spec/master_shake.jpg",
"spec/abstract_response_spec.rb",
"spec/payload_spec.rb",
"spec/raw_response_spec.rb",
"spec/request_spec.rb",
"spec/request2_spec.rb",
2010-05-16 11:58:05 -04:00
"spec/resource_spec.rb",
"spec/response_spec.rb",
"spec/restclient_spec.rb",
"spec/integration/certs/equifax.crt",
"spec/integration/certs/verisign.crt",
"spec/integration/request_spec.rb"
2009-06-20 18:19:56 -04:00
]
2009-12-28 12:02:32 -05:00
s.homepage = %q{http://github.com/archiloque/rest-client}
2009-06-20 18:19:56 -04:00
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{rest-client}
s.rubygems_version = %q{1.3.5}
2009-06-20 18:19:56 -04:00
s.summary = %q{Simple REST client for Ruby, inspired by microframework syntax for specifying actions.}
s.test_files = [
2010-05-16 11:58:05 -04:00
"spec/base.rb",
"spec/exceptions_spec.rb",
"spec/integration_spec.rb",
"spec/abstract_response_spec.rb",
"spec/payload_spec.rb",
"spec/raw_response_spec.rb",
"spec/request_spec.rb",
"spec/request2_spec.rb",
2010-05-16 11:58:05 -04:00
"spec/resource_spec.rb",
"spec/response_spec.rb",
"spec/restclient_spec.rb",
"spec/integration/request_spec.rb"
2009-06-20 18:19:56 -04:00
]
if s.respond_to? :specification_version then
s.specification_version = 3
2009-06-20 18:19:56 -04:00
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<mime-types>, [">= 1.16"])
2009-06-20 18:19:56 -04:00
else
s.add_dependency(%q<mime-types>, [">= 1.16"])
2009-06-20 18:19:56 -04:00
end
else
s.add_dependency(%q<mime-types>, [">= 1.16"])
2009-06-20 18:19:56 -04:00
end
2008-07-22 20:00:09 -04:00
end