from the NOOP.NL blog; an article called '5 easy Questions for Ron Jeffries'
...look for the good in every moment, and love it, while avoiding the bad without hating it.
- Ron Jeffries
easier said then done but definitely a goal worth pursuing.
Rake::Task['task_name'].execute
desc 'drop, create and rebuild development db' task(:rebuild_development_db) do puts "drop the db" Rake::Task['db:drop'].execute puts "create the db" Rake::Task['db:create'].execute puts "run the migrations" Rake::Task['db:migrate'].execute # do other stuff... end