Sha256: 2ec90d4c4676697434e8eb3fd41c5e108fb6e2bccc884d354e72d79de76f53ba

Contents?: true

Size: 1.17 KB

Versions: 3

Compression:

Stored size: 1.17 KB

Contents

# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.required_ruby_version = ">= 2.7.0"

  spec.name        = "table_sync"
  spec.version     = TableSync::VERSION
  spec.authors     = ["Umbrellio"]
  spec.email       = ["oss@umbrellio.biz"]
  spec.summary     = "DB Table synchronization between microservices " \
                     "based on Model's event system and RabbitMQ messaging"
  spec.description = "DB Table synchronization between microservices " \
                     "based on Model's event system and RabbitMQ messaging"
  spec.homepage    = "https://github.com/umbrellio/table_sync"
  spec.license     = "MIT"

  spec.bindir        = "bin"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end

  spec.add_runtime_dependency "memery"
  spec.add_runtime_dependency "rabbit_messaging", "~> 0.13"
  spec.add_runtime_dependency "rails"
  spec.add_runtime_dependency "self_data"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
table_sync-6.4.2 table_sync.gemspec
table_sync-6.4.1 table_sync.gemspec
table_sync-6.4.0 table_sync.gemspec