-
Notifications
You must be signed in to change notification settings - Fork 0
/
bunny-publisher.gemspec
38 lines (29 loc) · 1.35 KB
/
bunny-publisher.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bunny_publisher/version'
Gem::Specification.new do |spec|
spec.name = 'bunny-publisher'
spec.version = BunnyPublisher::VERSION
spec.authors = ['Rustam Sharshenov']
spec.email = ['rustam@sharshenov.com']
spec.summary = 'AMQP publisher for RabbitMQ based on Bunny'
spec.description = 'AMQP publisher for RabbitMQ based on Bunny'
spec.homepage = 'https://github.com/veeqo/bunny-publisher'
spec.license = 'MIT'
if spec.respond_to?(:metadata)
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = 'https://github.com/veeqo/bunny-publisher/blob/master/CHANGELOG.md'
end
spec.files = Dir['CHANGELOG.md', 'LICENSE.txt', 'README.md', 'lib/**/*']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.5'
spec.add_dependency 'activesupport', '>= 4.2'
spec.add_dependency 'bunny', '~> 2.17'
spec.add_development_dependency 'appraisal', '~> 2.3.0'
spec.add_development_dependency 'bundler', '>= 2.0'
spec.add_development_dependency 'pry-byebug'
spec.add_development_dependency 'rabbitmq_http_api_client', '~> 1.13'
spec.add_development_dependency 'rspec', '~> 3.0'
end