Sha256: 53fd759cd7c99a61b4275562f7e4bdf12d312cf96cd27d21070244f1cf3e000a

Contents?: true

Size: 960 Bytes

Versions: 11

Compression:

Stored size: 960 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 = "Popular easy to use Ruby client for RabbitMQ"
  s.description = "Easy to use, feature complete Ruby client for RabbitMQ 3.3 and later versions."
  s.license = "MIT"
  s.required_ruby_version = Gem::Requirement.new(">= 2.0")

  # 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_dependency "amq-protocol", ">= 2.0.1"

  # Files.
  s.has_rdoc = true
  s.extra_rdoc_files = ["README.md"]
  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- spec/*`.split("\n")
  s.require_paths = ["lib"]
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
bunny-2.6.4 bunny.gemspec
bunny-2.6.3 bunny.gemspec
bunny-2.6.2 bunny.gemspec
bunny-2.6.1 bunny.gemspec
bunny-2.6.0 bunny.gemspec
bunny-2.5.1 bunny.gemspec
bunny-2.5.0 bunny.gemspec
bunny-2.4.0 bunny.gemspec
bunny-2.3.1 bunny.gemspec
bunny-2.3.0 bunny.gemspec
bunny-2.2.2 bunny.gemspec