-
Notifications
You must be signed in to change notification settings - Fork 3
/
queueing_rabbit.gemspec
38 lines (31 loc) · 1.47 KB
/
queueing_rabbit.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
34
35
36
37
38
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/queueing_rabbit/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Artem Chistyakov"]
gem.email = ["[email protected]"]
gem.summary = %q{QueueingRabbit provides a flexible DSL to interact with RabbitMQ}
gem.homepage = "https://github.com/temochka/queueing_rabbit"
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.name = "queueing_rabbit"
gem.require_paths = ["lib"]
gem.version = QueueingRabbit::VERSION
gem.license = 'MIT'
gem.extra_rdoc_files = [ "LICENSE", "README.md" ]
gem.rdoc_options = ["--charset=UTF-8"]
gem.add_dependency "amqp", "~> 1.3.0"
gem.add_dependency "amq-protocol", "~> 1.9.0"
gem.add_dependency "bunny", "~> 1.6.3"
gem.add_dependency "rake", ">= 0"
gem.add_dependency "json", ">= 0"
gem.description = <<description
QueueingRabbit is a Ruby library providing a flexible DSL to interact with a
RabbitMQ server.
Any Ruby class or Module can be transformed into QueueingRabbit's background
job by including QueueingRabbit::Job module. It is also possible to inherit
your class from QueueingRabbit::AbstractJob abstract class.
The library is bundled with a Rake task to start a worker processing a list
of specified jobs.
description
end