Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a custom rake task, but it seems I dont have access to my models. I thought this was something implicitly included with rails task.

I have the following code in lib/tasks/test.rake:

namespace :test do
  task :new_task do
    puts Parent.all.inspect
  end
end

And here is what my parent model looks like:

class Parent < ActiveRecord::Base
  has_many :children
end

It's a pretty simple example, but I get the following error:

/> rake test:new_task
(in /Users/arash/Documents/dev/soft_deletes)
rake aborted!
uninitialized constant Parent

(See full trace by running task with --trace)

Any ideas? Thanks

share|improve this question

2 Answers

Figured it out, the task should look like:

namespace :test do
  task :new_task => :environment do
    puts Parent.all.inspect
  end
end

Notice the '=> :environment' dependency added to the task

share|improve this answer
1  
ah, of course. easy to miss – Luke Schafer May 18 '09 at 5:48
1  
what does this syntax mean? it's assigning new_task to the current environment? what is the current value of :environment? google is not helping. – scoarescoare Oct 18 '12 at 2:29
Thanks for emphasizing => :environment, I'd have missed both the solution and the mechanism. – chester Jan 30 at 15:19
@scoarescoare :environment here is the dependency, so when running new_task, load the environment (load your models) first, and then run new_task. – Edmund Jan 30 at 16:16

you might need to require your configuration (which should specify all your required models etc)

eg:

require 'config/environment'

alternatively you can just require each seperately, but you might have environment issues AR not set up etc)

share|improve this answer
2  
This will work, but it will break rake in general! After adding this change, try rake -T without a DB available. rake -T should happily provide a list of rake tasks without needing access to the DB! – irkenInvader Sep 15 '10 at 21:42

protected by Michael Myers Oct 4 '10 at 16:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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