forked from umbrellio/table_sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
table_sync.gemspec
33 lines (27 loc) · 1.17 KB
/
table_sync.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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 = ["[email protected]"]
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