-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdelayed.gemspec
More file actions
38 lines (33 loc) · 1.9 KB
/
delayed.gemspec
File metadata and controls
38 lines (33 loc) · 1.9 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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'delayed/version'
Gem::Specification.new do |spec|
spec.authors = ['Nathan Griffith', 'Rowan McDonald', 'Cyrus Eslami', 'John Mileham', 'Brandon Keepers', 'Brian Ryckbost',
'Chris Gaffney', 'David Genord II', 'Erik Michaels-Ober', 'Matt Griffin', 'Steve Richert', 'Tobias Lütke']
spec.description = <<~MSG
Delayed is a multi-threaded, SQL-driven ActiveJob backend used at Betterment to process millions
of background jobs per day. It supports postgres, mysql, and sqlite, and is designed to be
Reliable (with co-transactional job enqueues and guaranteed, at-least-once execution), Scalable
(with an optimized pickup query and concurrent job execution), Resilient (with built-in retry
mechanisms, exponential backoff, and failed job preservation), and Maintainable (with robust
instrumentation, continuous monitoring, and priority-based alerting).
MSG
spec.email = ['[email protected]']
spec.files = Dir['{app,config,db,lib}/**/*', 'LICENSE', 'Rakefile', 'README.md']
spec.test_files = Dir['spec/**/*']
spec.homepage = 'http://github.com/betterment/delayed'
spec.licenses = ['MIT']
spec.name = 'delayed'
spec.require_paths = ['lib']
spec.summary = 'a multi-threaded, SQL-driven ActiveJob backend used at Betterment to process millions of background jobs per day'
spec.version = Delayed::VERSION
spec.metadata = {
'changelog_uri' => 'https://github.com/betterment/delayed/releases',
'bug_tracker_uri' => 'https://github.com/betterment/delayed/issues',
'source_code_uri' => 'https://github.com/betterment/delayed',
'rubygems_mfa_required' => 'true',
}
spec.required_ruby_version = '>= 3.0'
spec.add_dependency 'activerecord', '>= 6.0'
spec.add_dependency 'concurrent-ruby'
end