Sha256: 32271f631aee87325e026798efc8012c465886e7c44c01688e4e32fb12284961

Contents?: true

Size: 1.48 KB

Versions: 2

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true

require_relative "lib/outboxable/version"

Gem::Specification.new do |spec|
  spec.name = "outboxable"
  spec.version = Outboxable::VERSION
  spec.authors = ["Brusk Awat"]
  spec.email = ["broosk.edogawa@gmail.com"]

  spec.summary = "An opiniated Gem for Rails applications to implement the transactional outbox pattern."
  spec.description = "The Outboxable Gem is tailored for Rails applications to implement the transactional outbox pattern. It currently only supports ActiveRecord."
  spec.homepage = "https://githuh.com/broosk1993/outboxable"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata['allowed_push_host'] = 'https://rubygems.org'

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://githuh.com/broosk1993/outboxable"
  spec.metadata["changelog_uri"] = "https://githuh.com/broosk1993/outboxable/CHANGELOG.md"

  # 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(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  
  spec.add_dependency 'bunny', '>= 2.19.0'
  spec.add_dependency 'connection_pool', '~> 2.3.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
outboxable-0.1.1 outboxable.gemspec
outboxable-0.1.0 outboxable.gemspec