2009-06-20 18:19:56 -04:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
2013-08-06 23:17:08 -04:00
|
|
|
require File.expand_path("../lib/restclient/version", __FILE__)
|
|
|
|
|
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'
|
2013-08-06 23:17:08 -04:00
|
|
|
s.version = RestClient::VERSION
|
2013-03-28 01:44:56 -04:00
|
|
|
s.authors = ['REST Client Team']
|
2012-12-17 15:48:58 -05: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-02-06 09:28:10 -05:00
|
|
|
s.license = 'MIT'
|
2012-12-17 15:48:58 -05: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")
|
2014-04-25 21:24:00 -04:00
|
|
|
s.homepage = 'https://github.com/rest-client/rest-client'
|
2012-12-17 15:48:58 -05:00
|
|
|
s.summary = 'Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.'
|
2009-06-20 18:19:56 -04:00
|
|
|
|
2014-02-05 01:38:34 -05:00
|
|
|
s.add_dependency(%q<mime-types>, ["~> 1.16"])
|
2014-07-08 14:02:54 -04:00
|
|
|
s.add_development_dependency(%q<rdoc>, [">= 2.4.2"])
|
2014-01-24 22:03:17 -05:00
|
|
|
s.add_development_dependency(%q<rake>, ["~> 10.0"])
|
2013-07-31 16:15:46 -04:00
|
|
|
s.add_development_dependency(%q<webmock>, ["~> 1.4"])
|
|
|
|
s.add_development_dependency(%q<rspec>, ["~> 2.4"])
|
2014-04-10 01:34:55 -04:00
|
|
|
s.add_development_dependency(%q<pry>)
|
2008-07-22 20:00:09 -04:00
|
|
|
end
|
2010-09-22 12:24:43 -04:00
|
|
|
|