Skip to content

Instantly share code, notes, and snippets.

@celeen
Created June 19, 2014 21:11
Show Gist options
  • Save celeen/d52021260fd8685c0413 to your computer and use it in GitHub Desktop.
Save celeen/d52021260fd8685c0413 to your computer and use it in GitHub Desktop.
Note to self: this is one way to write a console task in rake, using IRB
desc 'CONSOLE-ATION'
task "db:console" do
require 'irb'
ARGV.clear
IRB.start
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment