forked from ruby-amqp/rabbitmq_http_api_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrabbitmq_http_api_client.gemspec
26 lines (23 loc) · 1.12 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 = ["michael@defprotocol.org"]
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", "Mozilla Public License"]
gem.files = `git ls-files`.split($/)
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 "hashie", "~> 3.2"
gem.add_dependency "multi_json", "~> 1.9"
gem.add_dependency "faraday", "~> 0.9.0"
gem.add_dependency "faraday_middleware", "~> 0.9.0"
gem.add_dependency "effin_utf8", "~> 1.0.0"
end