2008-06-26 09:07:50 -03:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "rest-client"
|
2009-05-28 19:02:21 -07:00
|
|
|
s.version = "1.0"
|
2008-06-26 09:07:50 -03:00
|
|
|
s.summary = "Simple REST client for Ruby, inspired by microframework syntax for specifying actions."
|
|
|
|
s.description = "A simple REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete."
|
|
|
|
s.author = "Adam Wiggins"
|
|
|
|
s.email = "adam@heroku.com"
|
|
|
|
s.rubyforge_project = "rest-client"
|
|
|
|
s.homepage = "http://rest-client.heroku.com/"
|
|
|
|
s.has_rdoc = true
|
|
|
|
s.platform = Gem::Platform::RUBY
|
2008-12-19 02:28:56 -08:00
|
|
|
s.files = %w(Rakefile README.rdoc rest-client.gemspec
|
2009-02-13 14:43:26 +11:00
|
|
|
lib/rest_client.rb lib/restclient.rb
|
2009-01-24 14:55:18 -08:00
|
|
|
lib/restclient/request.rb lib/restclient/response.rb
|
|
|
|
lib/restclient/exceptions.rb lib/restclient/resource.rb
|
2009-06-01 15:53:39 -07:00
|
|
|
lib/restclient/mixin/response.rb
|
2009-01-24 14:55:18 -08:00
|
|
|
spec/base.rb spec/request_spec.rb spec/response_spec.rb
|
|
|
|
spec/exceptions_spec.rb spec/resource_spec.rb spec/restclient_spec.rb
|
2008-07-07 19:49:10 -07:00
|
|
|
bin/restclient)
|
|
|
|
s.executables = ['restclient']
|
2008-06-26 09:07:50 -03:00
|
|
|
s.require_path = "lib"
|
2008-07-22 17:00:09 -07:00
|
|
|
end
|