Search code examples
rubydebuggingmakefileverbose

verbose rakefile - print all executed command lines to stdout


I've just began building my first Rakefile (Ruby version of makefile), and I'd like to debug my script easily using verbose mode (like makefile -V or bash -x) is there an option to do so on ruby ?

thanks


Solution

  • rake --trace will probably give you everything you need