How to start transcription without using rails

I use ruby ​​(not rails) and I have a gem resque. According to the manual, I have to start work with the following command:

resque work 

But this command does not start working at all (I checked this resque file in bin / and it does not accept "work" at all).

Here is the result:

 Usage: resque [options] COMMAND Options: -r, --redis [HOST:PORT] Redis connection string -N, --namespace [NAMESPACE] Redis namespace -h, --help Show this message Commands: remove WORKER Removes a worker kill WORKER Kills a worker list Lists known workers 
+1
source share
1 answer

Created by rakefile with:

 require "resque/tasks" 

and run resque:

 rake resque:work QUEUE=* 
+1
source

All Articles