mirror of
https://github.com/rest-client/rest-client.git
synced 2022-11-09 13:49:40 -05:00
added gemspec for github
This commit is contained in:
parent
95236bc6d2
commit
17575c901e
1 changed files with 37 additions and 0 deletions
37
rest-client.gemspec
Normal file
37
rest-client.gemspec
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
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
|
||||||
|
s.files = %w(Rakefile) + Dir.glob("{lib,spec}/**/*")
|
||||||
|
s.require_path = "lib"
|
||||||
|
|
||||||
|
s.files = ["README", "Rakefile", "rest-client.gemspec", "lib/request_errors.rb", "lib/resource.rb", "lib/rest_client.rb", "spec/base.rb", "spec/request_errors_spec.rb", "spec/resource_spec.rb", "spec/rest_client_spec.rb"]
|
||||||
|
s.test_files = ["spec/base.rb", "spec/request_errors_spec.rb", "spec/resource_spec.rb", "spec/rest_client_spec.rb"]
|
||||||
|
s.extra_rdoc_files = ["README"]
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
spec = Gem::Specification.new do |s|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
end
|
Loading…
Reference in a new issue