-
Notifications
You must be signed in to change notification settings - Fork 139
/
hutch.gemspec
27 lines (25 loc) · 1.04 KB
/
hutch.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
27
require File.expand_path('../lib/hutch/version', __FILE__)
Gem::Specification.new do |gem|
if defined?(JRUBY_VERSION)
gem.platform = 'java'
gem.add_runtime_dependency 'march_hare', '>= 4.5.0'
else
gem.platform = Gem::Platform::RUBY
gem.add_runtime_dependency 'bunny', '>= 2.23', '< 3.0'
end
gem.add_runtime_dependency 'carrot-top', '~> 0.0.7'
gem.add_runtime_dependency 'multi_json', '~> 1.15'
gem.add_runtime_dependency 'activesupport', '>= 4.2'
gem.name = 'hutch'
gem.summary = 'Opinionated asynchronous inter-service communication using RabbitMQ'
gem.description = 'Hutch is a Ruby library for enabling asynchronous inter-service communication using RabbitMQ'
gem.version = Hutch::VERSION.dup
gem.required_ruby_version = '>= 2.6'
gem.authors = ['Harry Marr', 'Michael Klishin']
gem.homepage = 'https://github.com/ruby-amqp/hutch'
gem.require_paths = ['lib']
gem.license = 'MIT'
gem.executables = ['hutch']
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- spec/*`.split("\n")
end