Created
June 19, 2014 21:11
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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