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
Andy Brody ee50db6fd1 Reorganize and relax version dependencies.
- Make rdoc a development dependency.
- Allow any rdoc through 4.x.
- Relax version contstraints on ffi and netrc.
2014-04-30 19:28:56 -07:00

30 lines
1.1 KiB
Ruby

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/restclient/version', __FILE__)
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 -z`.split("\0")
s.test_files = `git ls-files -z spec/`.split("\0")
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.'
s.add_development_dependency('webmock', '~> 1.4')
s.add_development_dependency('rspec', '~> 2.4')
s.add_development_dependency('pry')
s.add_development_dependency('pry-doc')
s.add_development_dependency('rdoc', '>= 2.4.2', '< 5.0')
s.add_dependency('mime-types', '~> 2.0')
s.add_dependency('netrc', '~> 0.7')
s.required_ruby_version = '>= 1.9.2'
end