Sha256: 30548f46951cbae8d296214d26d8c752c684e17868df889b5b27b7ae16750dd1
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cotton_tail/version' Gem::Specification.new do |spec| spec.name = 'cotton-tail' spec.version = CottonTail::VERSION spec.authors = ['James Brennan'] spec.email = ['brennanmusic@gmail.com'] spec.homepage = 'https://github.com/jamesBrennan/cotton-tail' spec.summary = 'A simple multi-threaded amqp server' spec.description = 'Simply and easily add AMQP messaging capabilities to your services' spec.license = 'MIT' spec.cert_chain = ['certs/jamesbrennan.pem'] spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem') if $PROGRAM_NAME.end_with? 'gem' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features|integration)/}) end spec.bindir = 'bin' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'bunny', '~> 2.12' spec.add_development_dependency 'bundler', '~> 1.16' spec.add_development_dependency 'rabbitmq_http_api_client', '~> 1.9' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rspec-benchmark', '~> 0.4' spec.add_development_dependency 'rspec-its', '~> 1.2' spec.add_development_dependency 'rubocop', '~> 0.60' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cotton-tail-0.2.1 | cotton-tail.gemspec |