hallo everyone!
i already tried to find an answer to this question on google and posted
it on the ruby-mailing list, but i had no success so far in solving my
issue.
i detail my problem is the following:
i'm using rake with RubyOnRails and want to invoke a task from inside
another task. at the moment i do this with system calls like the
following:
system 'rake db:migrate VERSION=0'
or
`rake db:drop RAILS_ENV=test`
what i try to do now is something like that (inside another rake-task):
Rake::Task['db:migrate'].invoke(:version => 0) # to pass VERSION=0
or
Rake::Task['db:drop'].execute(RAILS_ENV, test)
nothing has worked so far. arguments get ignored or result in errors.
what's the right way to do such a thing?
thanks in advance
dominik
_______________________________________________
Rake-devel mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rake-devel