rest-client--rest-client/rest-client.gemspec

30 lines
1.1 KiB
Ruby
Raw Normal View History

2009-06-20 22:19:56 +00:00
# -*- encoding: utf-8 -*-
2014-03-13 01:03:14 +00:00
require File.expand_path('../lib/restclient/version', __FILE__)
2008-06-26 12:07:50 +00: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']
2014-03-13 01:03:14 +00:00
s.extra_rdoc_files = ['README.rdoc', 'history.md']
2014-04-01 00:42:19 +00:00
s.files = `git ls-files -z`.split("\0")
s.test_files = `git ls-files -z spec/`.split("\0")
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 16:24:43 +00:00
2014-03-07 03:57:22 +00:00
s.add_dependency('mime-types', '~> 2.0')
s.add_development_dependency('webmock', '~> 1.4')
s.add_development_dependency('rspec', '~> 2.4')
2014-03-07 03:59:29 +00:00
s.add_development_dependency('pry')
s.add_development_dependency('pry-doc')
2014-03-07 03:57:22 +00:00
s.add_dependency('netrc', '~> 0.7.7')
s.add_dependency('rdoc', '>= 2.4.2')
s.required_ruby_version = '>= 1.9.2'
2008-07-23 00:00:09 +00:00
end
2010-09-22 16:24:43 +00:00