-
Notifications
You must be signed in to change notification settings - Fork 1
/
disqualified.gemspec
29 lines (22 loc) · 1.03 KB
/
disqualified.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
require_relative "lib/disqualified/version"
Gem::Specification.new do |spec|
spec.name = "disqualified"
spec.version = Disqualified::VERSION
spec.authors = ["Zach Ahn"]
spec.email = ["engineering@zachahn.com"]
spec.homepage = "https://github.com/zachahn/disqualified"
spec.summary = "A background job processor tuned for SQLite"
spec.license = "LGPL-3.0-only"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/zachahn/disqualified"
spec.metadata["changelog_uri"] = "https://github.com/zachahn/disqualified/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,exe,lib}/**/*", "*.gemspec", "LICENSE", "README.md"]
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.required_ruby_version = ">= 3.1.0"
spec.post_install_message = "Remember to update! Run `rails g disqualified:install`"
spec.add_dependency "rails", ">= 7.0.0"
spec.add_dependency "concurrent-ruby", "~> 1.0"
end