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
Larry Gilbert ef5fa4f6c2 Update author to "REST Client Team"
(cherry picked from commit 4b31e754b6)

Conflicts:
	rest-client.gemspec
2014-01-24 19:18:42 -08:00

22 lines
935 B
Ruby

# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'rest-client'
s.version = '1.6.8.alpha'
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 = 'http://github.com/rest-client/rest-client'
s.summary = 'Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.'
s.add_runtime_dependency(%q<mime-types>, ["~> 1.16"])
s.add_development_dependency(%q<rake>, ["~> 10.0"])
s.add_development_dependency(%q<webmock>, [">= 0.9.1"])
s.add_development_dependency(%q<rspec>, [">= 2.0"])
end