Can I use helper methods in rake?

Thanks.

Sam

link|improve this question

53% accept rate
feedback

2 Answers

up vote 9 down vote accepted

Yes, you can. You simply need to require the helper file and then include that helper inside your rake file (which actually a helper is a mixin that we can include).

For example, here I have an application_helper file inside app/helpers directory that contains this:

module ApplicationHelper
  def hi
    "hi"
  end
end

so here is my rake file's content:

require "#{RAILS_ROOT}/app/helpers/application_helper"
include ApplicationHelper

namespace :help do
  task :hi do
    puts hi
  end
end

and here is the result on my Terminal:

god:helper-in-rake arie$ rake help:hi 
hi
link|improve this answer
feedback

This would not work in Rails 3.1 as RAILS_ROOT has been deprecated.

So this line:

require "#{RAILS_ROOT}/app/helpers/application_helper"

Must be replaced with this:

require "#{Rails.root}/app/helpers/application_helper"
link|improve this answer
feedback

protected by Will Jan 5 '11 at 15:05

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.