-
Notifications
You must be signed in to change notification settings - Fork 9
/
resque-integration.gemspec
39 lines (34 loc) · 1.73 KB
/
resque-integration.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
37
38
39
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'resque/integration/version'
Gem::Specification.new do |gem|
gem.name = 'resque-integration'
gem.version = Resque::Integration::VERSION
gem.authors = ['Alexei Mikhailov', 'Michail Merkushin']
gem.email = %w([email protected] [email protected])
gem.summary = %q{Seamless integration of resque with resque-progress and resque-lock}
gem.homepage = 'https://github.com/abak-press/resque-integration'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = %w(lib)
gem.add_runtime_dependency 'resque', '>= 1.25.2'
gem.add_runtime_dependency 'rails', '>= 3.0.0'
gem.add_runtime_dependency 'resque-meta', '>= 2.0.0'
gem.add_runtime_dependency 'resque-progress', '~> 1.0.1'
gem.add_runtime_dependency 'resque-multi-job-forks', '~> 0.4.2'
gem.add_runtime_dependency 'resque-failed-job-mailer', '~> 0.0.3'
gem.add_runtime_dependency 'resque-scheduler', '~> 4.0'
gem.add_runtime_dependency 'resque-retry', '~> 1.5'
gem.add_runtime_dependency 'god', '~> 0.13.4'
gem.add_runtime_dependency 'multi_json'
gem.add_runtime_dependency 'rake'
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'rspec', '~> 2.14'
gem.add_development_dependency 'rspec-its'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'appraisal', '>= 1.0.2'
gem.add_development_dependency 'combustion', '>= 0.5.5'
gem.add_development_dependency 'timecop'
gem.add_development_dependency 'pry-byebug'
end