Re: Simple Rake question

I’ve tried putting the rake files in /lib/tasks, but that didn’t work
either.

My rake task is as follows:

task :do_this => [:import_stuff, :load_data]

If I type:

rake do_this

The response is, Don’t know how to build task ‘do_this’

Does the app-level “Rakefile” impact how/when rake files in lib/tasks
get processed?

-Mark