-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathrabbitmq_http_api_client.gemspec
26 lines (23 loc) · 1.11 KB
/
rabbitmq_http_api_client.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rabbitmq/http/client/version'
Gem::Specification.new do |gem|
gem.name = "rabbitmq_http_api_client"
gem.version = RabbitMQ::HTTP::Client::VERSION
gem.authors = ["Michael Klishin"]
gem.email = ["[email protected]"]
gem.description = %q{RabbitMQ HTTP API client for Ruby}
gem.summary = %q{RabbitMQ HTTP API client for Ruby}
gem.homepage = "http://github.com/ruby-amqp/rabbitmq_http_api_client"
gem.licenses = ["MIT", "MPL-2.0"]
gem.files = Dir["ChangeLog.md", "LICENSE.txt", "README.md", "lib/**/*"]
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'addressable', '~> 2.7'
gem.add_dependency 'hashie', '~> 4.1'
gem.add_dependency 'multi_json', '~> 1.15'
gem.add_dependency 'faraday', '~> 2.9'
gem.add_dependency 'faraday-follow_redirects', '~> 0.3'
end