File: bunny.gemspec

package info (click to toggle)
ruby-bunny 2.24.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,628 kB
  • sloc: ruby: 10,299; sh: 57; makefile: 8
file content (38 lines) | stat: -rwxr-xr-x 1,148 bytes parent folder | download
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
#!/usr/bin/env gem build
# encoding: utf-8

require File.expand_path("../lib/bunny/version", __FILE__)

Gem::Specification.new do |s|
  s.name = "bunny"
  s.version = Bunny::VERSION.dup
  s.homepage = "http://rubybunny.info"
  s.summary = "Popular easy to use Ruby client for RabbitMQ"
  s.description = "Easy to use, feature complete Ruby client for RabbitMQ 3.9 and later versions."
  s.license = "MIT"
  s.required_ruby_version = Gem::Requirement.new(">= 2.5")

  s.metadata = {
    "changelog_uri" => "https://github.com/ruby-amqp/bunny/blob/main/ChangeLog.md",
    "source_code_uri" => "https://github.com/ruby-amqp/bunny/",
  }

  # Sorted alphabetically.
  s.authors = [
    "Chris Duncan",
    "Eric Lindvall",
    "Jakub Stastny aka botanicus",
    "Michael S. Klishin",
    "Stefan Kaes"]

  s.email = ["michael.s.klishin@gmail.com"]

  # Dependencies
  s.add_runtime_dependency 'amq-protocol', '~> 2.3'
  s.add_runtime_dependency 'sorted_set', '~> 1', '>= 1.0.2'

  # Files.
  s.extra_rdoc_files = ["README.md"]
  s.files         = `git ls-files -- lib/*`.split("\n").reject { |f| f.match(%r{^bin/ci/}) }
  s.require_paths = ["lib"]
end