bunny-mock.gemspec in bunny-mock-1.1.0 vs bunny-mock.gemspec in bunny-mock-1.2.0

- old
+ new

@@ -3,25 +3,28 @@ 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.name = 'bunny-mock' + s.version = BunnyMock::VERSION.dup + s.platform = Gem::Platform::RUBY + s.authors = ['Andrew Rempe'] + s.email = [Base64.decode64('YW5kcmV3cmVtcGVAZ21haWwuY29t\n')] + 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.authors = [ 'Andrew Rempe' ] - s.email = [ Base64.encode64('YW5kcmV3cmVtcGVAZ21haWwuY29t\n') ] + s.required_ruby_version = Gem::Requirement.new '>= 2.0' - # Dependencies - s.add_dependency 'amq-protocol', '>= 2.0.1' + s.add_dependency 'bunny', '~> 2.0' - # 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' ] + s.add_development_dependency 'rake' + s.add_development_dependency 'rubocop' + s.add_development_dependency 'yard' + s.add_development_dependency 'rspec', '~> 3.4.0' + s.add_development_dependency 'coveralls' + + s.files = `git ls-files`.split "\n" + s.test_files = `git ls-files -- spec/*`.split "\n" + s.require_paths = [ 'lib' ] end