class Resque::Cli::Worker

Public Instance Methods

list() click to toggle source
# File lib/resque/cli.rb, line 31
def list
  puts ::Resque.workers
end
remove(worker_id) click to toggle source
# File lib/resque/cli.rb, line 41
def remove(worker_id)
  puts ::Resque.remove_worker(worker_id)
end
working() click to toggle source
# File lib/resque/cli.rb, line 36
def working
  puts ::Resque.working
end