Created
February 5, 2010 20:47
-
-
Save maiha/296211 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| % vi Thorfile | |
| ... | |
| desc "console ENV", "Start Monk console in the supplied environment" | |
| def console(env = ENV["RACK_ENV"] || "development") | |
| verify_config(env) | |
| exec "env RACK_ENV=#{env} irb -r init -Ku" | |
| end | |
| ... | |
| % thor monk:console | |
| irb(main):001:0> User.count | |
| => 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment