vote up 0 vote down star

When I run a rake task for an application that uses Models defined in a plugin I get an Uninitialized Constant error, but when I run the model process, with script/runner, that is fired in the rake task then the job runs fine?

Is there some difference between script/runner that loads all my plugins that doesn't happen when I fire up a rake task even though it is being passed an environment?

flag

38% accept rate

1 Answer

vote up 1 vote down

Your rake task needs to be dependent upon :environment. That will spin up your app's environment and give you access to your models, etc.

Eg

desc "Make DB Views"
task :views => [:environment] do |t|
# your task's code

end
link|flag
That's the thing though, we do have the the environment being passed in that way, that's what makes it so odd. – railsninja May 26 at 1:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.