sidekiq-debounce.gemspec in sidekiq-debounce-1.0.2 vs sidekiq-debounce.gemspec in sidekiq-debounce-1.1.0
- old
+ new
@@ -15,20 +15,21 @@
delay the job until the debounce period has elapsed with no additional debounce
calls. If you make another job with the same arguments before the specified
time has elapsed, the timer is reset and the entire period must pass again
before the job is executed.
DESC
- spec.homepage = 'https://github.com/NuckChorris/sidekiq-debounce'
+ spec.homepage = 'https://github.com/hummingbird-me/sidekiq-debounce'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^spec/})
spec.require_paths = ['lib']
- spec.add_dependency 'sidekiq', '>= 3.1.0'
+ spec.add_dependency 'sidekiq', '>= 2.17'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'mock_redis'
spec.add_development_dependency 'mocha'
spec.add_development_dependency 'codeclimate-test-reporter'
+ spec.add_development_dependency 'minitest'
end