1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00
rest-client--rest-client/rest-client.gemspec

27 lines
1.1 KiB
Ruby
Raw Permalink Normal View History

2009-06-20 18:19:56 -04:00
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/restclient/version", __FILE__)
2008-06-26 08:07:50 -04:00
Gem::Specification.new do |s|
s.name = 'rest-client'
s.version = RestClient::VERSION
s.authors = ['REST Client Team']
s.description = 'A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.'
s.license = 'MIT'
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 = 'https://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
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"])
s.add_development_dependency(%q<rake>, ["~> 10.0"])
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