Sha256: 6a0a772f5a96785d840bc4652e4bcb2c93d7d0c9ba7169235d5e44afbc16641d

Contents?: true

Size: 787 Bytes

Versions: 2

Compression:

Stored size: 787 Bytes

Contents

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

require 'base64'
require File.expand_path("../lib/bunny_mock/version", __FILE__)

Gem::Specification.new do |s|
	s.name = 'bunny-mock'
	s.version = BunnyMock::VERSION.dup
	s.summary = 'Mocking for the popular Bunny client for RabbitMQ'
	s.description = 'Easy to use mocking for testing the Bunny client for RabbitMQ'
	s.license = 'MIT'
	s.required_ruby_version = Gem::Requirement.new '>= 2.0'

	s.authors = [ 'Andrew Rempe' ]
	s.email =  [ Base64.encode64('YW5kcmV3cmVtcGVAZ21haWwuY29t\n') ]

	# 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

2 entries across 2 versions & 1 rubygems

Version Path
bunny-mock-1.1.0 bunny-mock.gemspec
bunny-mock-1.0.0 bunny-mock.gemspec