Sha256: 21683d57b1d1ffc26b0cf611457c1051f5180ae7c4b17c49d7722a809e5eb55a

Contents?: true

Size: 955 Bytes

Versions: 4

Compression:

Stored size: 955 Bytes

Contents

#!/usr/bin/env gem build
# encoding: utf-8

require "base64"
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 = "Easy to use Ruby client for RabbitMQ"
  s.description = "Easy to use, feature complete Ruby client for RabbitMQ"
  s.license = "MIT"
  s.required_ruby_version = Gem::Requirement.new(">= 2.2")

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

  s.email = ["mklishin@pivotal.io"]

  # Dependencies
  s.add_runtime_dependency 'amq-protocol', '~> 2.3', '>= 2.3.0'

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bunny-2.14.4 bunny.gemspec
bunny-2.14.3 bunny.gemspec
bunny-2.14.2 bunny.gemspec
bunny-2.14.1 bunny.gemspec