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

78 lines
3 KiB
Ruby
Raw Normal View History

2010-09-22 12:24:43 -04:00
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
2011-02-13 04:53:16 -05:00
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
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}
2011-08-24 12:10:20 -04:00
s.version = "1.6.7"
2010-09-22 12:24:43 -04:00
2009-06-20 18:19:56 -04:00
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
2011-06-04 19:01:10 -04:00
s.authors = [%q{Adam Wiggins}, %q{Julien Kirch}]
2011-08-24 12:10:20 -04:00
s.date = %q{2011-08-24}
2010-09-22 12:24:43 -04:00
s.description = %q{A 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}
2011-06-04 19:01:10 -04:00
s.executables = [%q{restclient}]
2009-06-20 18:19:56 -04:00
s.extra_rdoc_files = [
2010-09-22 12:24:43 -04:00
"README.rdoc",
2011-02-13 04:53:16 -05:00
"history.md"
2009-06-20 18:19:56 -04:00
]
s.files = [
2010-09-22 12:24:43 -04:00
"README.rdoc",
2011-02-13 04:53:16 -05:00
"Rakefile",
"VERSION",
"bin/restclient",
"lib/rest-client.rb",
"lib/rest_client.rb",
"lib/restclient.rb",
"lib/restclient/abstract_response.rb",
"lib/restclient/exceptions.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/abstract_response_spec.rb",
"spec/base.rb",
"spec/exceptions_spec.rb",
"spec/integration/certs/equifax.crt",
"spec/integration/certs/verisign.crt",
"spec/integration/request_spec.rb",
"spec/integration_spec.rb",
"spec/master_shake.jpg",
"spec/payload_spec.rb",
"spec/raw_response_spec.rb",
"spec/request2_spec.rb",
"spec/request_spec.rb",
"spec/resource_spec.rb",
"spec/response_spec.rb",
"spec/restclient_spec.rb"
2009-06-20 18:19:56 -04:00
]
2012-11-07 02:51:26 -05:00
s.homepage = %q{http://github.com/rest-client/rest-client}
2011-06-04 19:01:10 -04:00
s.require_paths = [%q{lib}]
s.rubygems_version = %q{1.8.5}
2010-09-22 12:24:43 -04:00
s.summary = %q{Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.}
2011-06-04 19:01:10 -04:00
s.test_files = [%q{spec/abstract_response_spec.rb}, %q{spec/base.rb}, %q{spec/exceptions_spec.rb}, %q{spec/integration}, %q{spec/integration/certs}, %q{spec/integration/certs/equifax.crt}, %q{spec/integration/certs/verisign.crt}, %q{spec/integration/request_spec.rb}, %q{spec/integration_spec.rb}, %q{spec/master_shake.jpg}, %q{spec/payload_spec.rb}, %q{spec/raw_response_spec.rb}, %q{spec/request2_spec.rb}, %q{spec/request_spec.rb}, %q{spec/resource_spec.rb}, %q{spec/response_spec.rb}, %q{spec/restclient_spec.rb}]
2009-06-20 18:19:56 -04:00
if s.respond_to? :specification_version then
s.specification_version = 3
2010-09-22 12:24:43 -04:00
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<mime-types>, [">= 1.16"])
2010-09-22 12:24:43 -04:00
s.add_development_dependency(%q<webmock>, [">= 0.9.1"])
s.add_development_dependency(%q<rspec>, [">= 2.0"])
2009-06-20 18:19:56 -04:00
else
s.add_dependency(%q<mime-types>, [">= 1.16"])
2010-09-22 12:24:43 -04:00
s.add_dependency(%q<webmock>, [">= 0.9.1"])
s.add_dependency(%q<rspec>, [">= 2.0"])
2009-06-20 18:19:56 -04:00
end
else
s.add_dependency(%q<mime-types>, [">= 1.16"])
2010-09-22 12:24:43 -04:00
s.add_dependency(%q<webmock>, [">= 0.9.1"])
s.add_dependency(%q<rspec>, [">= 2.0"])
2009-06-20 18:19:56 -04:00
end
2012-11-03 18:12:57 -04:00
s.add_dependency(%q<netrc>, ["~> 0.7.7"])
2008-07-22 20:00:09 -04:00
end
2010-09-22 12:24:43 -04:00