Help installing delayed_job
Posted
by Mike
on Stack Overflow
See other posts from Stack Overflow
or by Mike
Published on 2010-04-06T23:53:29Z
Indexed on
2010/04/07
1:43 UTC
Read the original article
Hit count: 235
I'm trying to use collectiveidea's delayed_job gem The installation instructions include
Rake tasks are not automatically loaded from gems, so you’ll need to add
the following to your Rakefile:
begin
require 'delayed/tasks'
rescue LoadError
STDERR.puts "Run `rake gems:install` to install delayed_job"
end
Where is my Rakefile? And what is a Rakefile?
© Stack Overflow or respective owner