2009-06-20 18:19:56 -04:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
2008-06-26 08:07:50 -04:00
|
|
|
Gem::Specification.new do |s|
|
2012-12-17 15:48:58 -05:00
|
|
|
s.name = 'rest-client'
|
|
|
|
s.version = '1.6.8.alpha'
|
|
|
|
s.authors = ['Adam Wiggins', 'Julien Kirch']
|
|
|
|
s.description = 'A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.'
|
|
|
|
s.email = 'rest.client@librelist.com'
|
|
|
|
s.executables = ['restclient']
|
|
|
|
s.extra_rdoc_files = ["README.rdoc", "history.md"]
|
|
|
|
s.files = `git ls-files`.split("\n")
|
|
|
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
|
|
|
s.homepage = 'http://github.com/rest-client/rest-client'
|
|
|
|
s.summary = 'Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.'
|
2009-06-20 18:19:56 -04:00
|
|
|
|
2013-10-30 14:27:20 -04:00
|
|
|
s.add_runtime_dependency(%q<mime-types>, ["~> 1.16"])
|
2013-10-30 14:23:06 -04:00
|
|
|
s.add_development_dependency(%q<webmock>, [">= 0.9.1"])
|
2012-12-07 23:53:47 -05:00
|
|
|
s.add_development_dependency(%q<rspec>, [">= 2.0"])
|
2008-07-22 20:00:09 -04:00
|
|
|
end
|
2010-09-22 12:24:43 -04:00
|
|
|
|