When I run rails c and press the up key when irb starts up, I can see the last commands I entered when my app dropped to irb after encountering a debugger command for the ruby-debug gem. I would not only like to clear these commands out, but I would like it if rails c would pull the last commands I issued during my last rails console session. I think it used to do this but I'm not sure what has changed. I'm on ruby 1.8.7 and rails 3.0.3 on Mac OS 10.6.5 if that helps.
|
|
|||||
|
|
I interpret you question as asking how to turn history on in the Rails Console and off in the Ruby debugger. If this isn't true, please clarify. IRB, and by extension, the Rails Console, read from The debugger reads a file called
Turn it back on with:
You could also set your debug output to go to a different file than irb reads from with the command:
These also work from the debug prompt, but aren't persistent. |
|||||||||||
|
|
There are a number of tools to help improve the irb experience. Bond looks promising: https://github.com/cldwalker/bond I've used hirb by the same author and like it: https://github.com/cldwalker/hirb Here's a comprehensive list: http://www.ruby-toolbox.com/categories/irb_tools.html And here's some tips on directly editing the .irbrc file: http://www.wetware.co.nz/blog/2010/09/how-to-persist-rails-or-irb-console-command-history-after-exit/ Hope this helps you find what you are looking for. |
|||
|
|