2008-06-26 08:07:50 -04:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "rest-client"
|
|
|
|
s.version = "0.5"
|
|
|
|
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-06-30 14:07:46 -04:00
|
|
|
s.files = %w(Rakefile README rest-client.gemspec
|
|
|
|
lib/request_errors.rb lib/resource.rb lib/rest_client.rb
|
2008-07-07 22:49:10 -04:00
|
|
|
spec/base.rb spec/request_errors_spec.rb spec/resource_spec.rb spec/rest_client_spec.rb
|
|
|
|
bin/restclient)
|
|
|
|
s.executables = ['restclient']
|
2008-06-26 08:07:50 -04:00
|
|
|
s.require_path = "lib"
|
|
|
|
end
|