forked from edk/resque-round-robin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresque-round-robin.gemspec
More file actions
23 lines (19 loc) · 952 Bytes
/
resque-round-robin.gemspec
File metadata and controls
23 lines (19 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/resque/plugins/round_robin/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Eddy Kim"]
gem.email = ["eddyhkim@gmail.com"]
gem.description = %q{A Resque round-robin plugin}
gem.summary = %q{A Resque plugin to modify the worker behavior to pull jobs off queues, round-robin}
gem.homepage = ""
gem.add_dependency "resque", "~> 1.19"
gem.add_dependency "resque-dynamic-queues"
gem.add_development_dependency('rspec', '~> 2.5')
gem.add_development_dependency('rack-test', '~> 0.5.4')
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "resque-round-robin"
gem.require_paths = ["lib"]
gem.version = Resque::Plugins::RoundRobin::VERSION
end