Sha256: 6f8247750823a82b697cd15eec62b87c8dbeb24390c76f0faffa7b0bc8d40cdf
Contents?: true
Size: 877 Bytes
Versions: 1
Compression:
Stored size: 877 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "rabbit/version" Gem::Specification.new do |spec| spec.required_ruby_version = ">= 3.0" spec.name = "rabbit_messaging" spec.version = Rabbit::VERSION spec.authors = ["Umbrellio"] spec.email = ["oss@umbrellio.biz"] spec.summary = "Rabbit (Rabbit Messaging)" spec.description = "Rabbit (Rabbit Messaging)" spec.homepage = "https://github.com/umbrellio/rabbit_messaging" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^spec/}) } spec.require_paths = ["lib"] spec.add_runtime_dependency "bunny", "~> 2.0" spec.add_runtime_dependency "lamian" spec.add_runtime_dependency "rails", ">= 5.2" spec.add_runtime_dependency "sneakers", "~> 2.0" spec.add_runtime_dependency "tainbox" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rabbit_messaging-0.15.0 | rabbit_messaging.gemspec |