-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfreekiqs.gemspec
21 lines (19 loc) · 987 Bytes
/
freekiqs.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = 'freekiqs'
gem.version = '6.5.0'
gem.authors = ['Rob Lewis']
gem.email = ['[email protected]']
gem.summary = 'Sidekiq middleware extending RetryJobs to allow silient errors.'
gem.description = 'Sidekiq middleware extending RetryJobs to allow configuring ' \
'how many exceptions a job can throw and be wrapped by a silenceable exception.'
gem.homepage = 'https://github.com/BookBub/freekiqs'
gem.license = 'MIT'
gem.executables = []
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- spec/*`.split("\n")
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.2.2'
gem.add_dependency 'sidekiq', '>= 6.5.0'
gem.add_development_dependency 'rspec', '>= 3.6.0'
end