Sha256: 179ed60325be9b73bc7a930597612c76aa38f73abbb2f6101875036220ca5f2e

Contents?: true

Size: 1.65 KB

Versions: 9

Compression:

Stored size: 1.65 KB

Contents

# frozen_string_literal: true

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "mimi/messaging/version"

Gem::Specification.new do |spec|
  spec.name          = "mimi-messaging"
  spec.version       = Mimi::Messaging::VERSION
  spec.authors       = ["Alex Kukushkin"]
  spec.email         = ["alex@kukushk.in"]

  spec.summary       = "Interservice communication via message bus for microservices"
  spec.description   = "Interservice communication via message bus for microservices"
  spec.homepage      = "https://github.com/kukushkin/mimi-messaging"
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
  # delete this section to allow pushing this gem to any host.
  if spec.respond_to?(:metadata)
    spec.metadata["allowed_push_host"] = "https://rubygems.org/"
  else
    raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
  end

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "mimi-core", "~> 1.1"

  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "pry", "~> 0.12"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mimi-messaging-1.2.7 mimi-messaging.gemspec
mimi-messaging-1.2.6 mimi-messaging.gemspec
mimi-messaging-1.2.5 mimi-messaging.gemspec
mimi-messaging-1.2.4 mimi-messaging.gemspec
mimi-messaging-1.2.2 mimi-messaging.gemspec
mimi-messaging-1.2.1 mimi-messaging.gemspec
mimi-messaging-1.1.1 mimi-messaging.gemspec
mimi-messaging-1.1.0 mimi-messaging.gemspec
mimi-messaging-1.0.0 mimi-messaging.gemspec