Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to execute rake db:test:prepare from another task.

namespace :db do
  namespace :populate do
    desc "Seed development database"
    task development: :environment do
      puts "Kill local server"
      %x{ ps xauwww | grep -i --regex="[t]hin" | awk '{print $2}' | xargs kill }
      puts "Resetting development database"
      Rake::Task['db:reset'].execute
      puts "Migrating development database"
      Rake::Task['db:migrate'].execute
      puts "Populating development database"
      Rake::Task['db:populate'].execute
      puts "Pepare test database"
      Rake::Task['db:test:prepare'].execute
      puts "Start local server"
      system 'thin -d start'
    end
   …
end

Using invoke instead of execute doesn't help. It seems to work fine if I define it by itself:

task example: :environment do
  Rake::Task['db:test:prepare'].execute
end

When I run rake db:populate:development, all the tasks are run except for Rake::Task['db:test:prepare'].execute. There's no activity in the development log for that command, but it doesn't prevent the next task from running (starting the server). Usually, I see some SQL statements when I run db:test:prepare by itself.

Notes:

$ rails -v
Rails 3.2.2

$ ruby -v
ruby 1.9.3p125 (2012-02-16 revision 34643) [x86_64-darwin11.3.0]

$ uname -a
Darwin hook 11.3.0 Darwin Kernel Version 11.3.0: Thu Jan 12 18:47:41 PST 2012; root:xnu-1699.24.23~1/RELEASE_X86_64 x86_64
share|improve this question

2 Answers

Try Rake::Task['db:test:prepare'].invoke instead of .execute, so that it runs dependent tasks first. But it only invokes the task if its not invoked first.

Refer: this

share|improve this answer

I know this isn't the correct way of doing it, but I was having similar problems and ended up calling it using:

`rake db:test:prepare`

This is the only method that seemed to work for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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