1 2 3 4 5 6 7 8 9
task default: %w[test] task :test do p "Hello from rakefile" end task :migrate do ruby "migrations/initial.rb" end