This repository was archived by the owner on Feb 13, 2026. It is now read-only.
forked from palkan/downstream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdownstream.gemspec
More file actions
41 lines (35 loc) · 1.67 KB
/
downstream.gemspec
File metadata and controls
41 lines (35 loc) · 1.67 KB
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
34
35
36
37
38
39
40
41
# frozen_string_literal: true
require_relative "lib/downstream/version"
Gem::Specification.new do |spec|
spec.name = "downstream"
spec.version = Downstream::VERSION
spec.authors = ["[email protected]", "[email protected]"]
spec.summary = "Straightforward way to implement communication between Rails Engines using the Publish-Subscribe pattern"
spec.homepage = "https://github.com/palkan/downstream"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing 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
spec.files = Dir.glob("lib/**/*") + %w[LICENSE.txt README.md]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7"
spec.add_dependency "after_commit_everywhere", "~> 1.0"
spec.add_dependency "globalid", "~> 1.0"
spec.add_dependency "rails", ">= 6"
spec.add_development_dependency "appraisal", "~> 2.2"
spec.add_development_dependency "bundler", ">= 1.16"
spec.add_development_dependency "combustion", "~> 1.3"
spec.add_development_dependency "debug", "~> 1.3"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rspec-rails", "~> 6.0"
spec.add_development_dependency "sqlite3", "~> 1.4.0"
spec.add_development_dependency "standard", "~> 1.3"
end