Sha256: 8d3962ea4f6aa43906029b7dc2cca0f880abc8434edfaacf37ec44e204e6a46d
Contents?: true
Size: 915 Bytes
Versions: 3
Compression:
Stored size: 915 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'msgr/version' Gem::Specification.new do |spec| spec.name = 'msgr' spec.version = Msgr::VERSION spec.authors = ['Jan Graichen'] spec.email = ['jgraichen@altimos.de'] spec.description = 'Msgr: Rails-like Messaging Framework' spec.summary = 'Msgr: Rails-like Messaging Framework' spec.homepage = 'https://github.com/jgraichen/msgr' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) {|f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = %w[lib] spec.add_dependency 'activesupport' spec.add_dependency 'bunny', '>= 1.4', '< 3.0' spec.add_development_dependency 'bundler' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
msgr-1.3.2 | msgr.gemspec |
msgr-1.3.1 | msgr.gemspec |
msgr-1.3.0 | msgr.gemspec |