forked from rest-client/rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rest-client.gemspec
21 lines (21 loc) · 1.03 KB
/
rest-client.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
s.name = "rest-client"
s.version = "0.9.1"
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 = "[email protected]"
s.rubyforge_project = "rest-client"
s.homepage = "http://rest-client.heroku.com/"
s.has_rdoc = true
s.platform = Gem::Platform::RUBY
s.files = %w(Rakefile README.rdoc rest-client.gemspec
lib/rest_client.rb lib/restclient.rb
lib/restclient/request.rb lib/restclient/response.rb
lib/restclient/exceptions.rb lib/restclient/resource.rb
spec/base.rb spec/request_spec.rb spec/response_spec.rb
spec/exceptions_spec.rb spec/resource_spec.rb spec/restclient_spec.rb
bin/restclient)
s.executables = ['restclient']
s.require_path = "lib"
end