-
Notifications
You must be signed in to change notification settings - Fork 14
/
activejob-retry.gemspec
36 lines (30 loc) · 1.17 KB
/
activejob-retry.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
34
35
36
require 'date'
require File.expand_path('../lib/active_job/retry/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'activejob-retry'
s.version = ActiveJob::Retry::VERSION
s.date = Date.today.strftime('%Y-%m-%d')
s.authors = ['Isaac Seymour']
s.email = ['[email protected]']
s.summary = 'Automatic retry functionality for ActiveJob.'
s.description = <<-EOL
activejob-retry provides automatic retry functionality for failed
ActiveJobs, with exponential backoff.
Features:
* Works with any queue adapter that supports retries.
* Whitelist/blacklist exceptions to retry on.
* Exponential backoff (varying the delay between retries).
* Light and easy to override retry logic.
EOL
s.homepage = 'https://github.com/isaacseymour/activejob-retry'
s.license = 'MIT'
s.has_rdoc = false
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.require_paths = %w[lib]
s.add_dependency('activejob', '>= 4.2')
s.add_dependency('activesupport', '>= 4.2')
s.add_development_dependency('rake', ' >= 10.3')
s.add_development_dependency('rspec')
s.add_development_dependency('rspec-its')
s.add_development_dependency('rubocop')
end