forked from ruby-amqp/hutch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hutch.gemspec
33 lines (31 loc) · 1.28 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
28
29
30
31
32
33
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', '>= 2.16.0'
else
gem.platform = Gem::Platform::RUBY
gem.add_runtime_dependency 'bunny', '>= 2.4.0'
end
gem.add_runtime_dependency 'carrot-top', '~> 0.0.7'
gem.add_runtime_dependency 'multi_json', '~> 1.11.2'
gem.add_runtime_dependency 'activesupport', '>= 3.0'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'simplecov', '~> 0.7.1'
gem.add_development_dependency 'yard', '~> 0.8'
gem.add_development_dependency 'redcarpet', '> 0'
gem.add_development_dependency 'github-markup', '> 0'
gem.name = 'hutch'
gem.summary = 'Easy 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.authors = ['Harry Marr']
gem.email = ['[email protected]']
gem.homepage = 'https://github.com/gocardless/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