2009-06-20 15:19:56 -07:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
2008-06-26 09:07:50 -03:00
|
|
|
Gem::Specification.new do |s|
|
2012-12-17 20:48:58 +00:00
|
|
|
s.name = 'rest-client'
|
2013-03-27 22:44:56 -07:00
|
|
|
s.version = '1.7.0.alpha'
|
|
|
|
s.authors = ['REST Client Team']
|
2012-12-17 20:48:58 +00:00
|
|
|
s.description = 'A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.'
|
2013-03-13 14:09:32 -07:00
|
|
|
s.license = 'MIT'
|
2012-12-17 20:48:58 +00:00
|
|
|
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.'
|
2010-09-22 18:24:43 +02:00
|
|
|
|
2012-12-17 20:48:58 +00:00
|
|
|
s.add_runtime_dependency(%q<mime-types>, [">= 1.16"])
|
2013-07-31 13:15:46 -07:00
|
|
|
s.add_development_dependency(%q<webmock>, ["~> 1.4"])
|
|
|
|
s.add_development_dependency(%q<rspec>, ["~> 2.4"])
|
2013-07-29 14:09:53 -07:00
|
|
|
s.add_development_dependency(%q<simplecov>)
|
2012-11-03 16:12:57 -06:00
|
|
|
s.add_dependency(%q<netrc>, ["~> 0.7.7"])
|
2013-08-10 18:19:10 -07:00
|
|
|
s.add_dependency(%q<rdoc>, [">= 2.4.2"])
|
2008-07-22 17:00:09 -07:00
|
|
|
end
|
2010-09-22 18:24:43 +02:00
|
|
|
|