What's your favourite IRB tip or trick? It could be a handy shortcut within the IRB console itself or maybe a .irbrc customization.
I really like that you can type an underscore to retrieve the result of the last expression.
|
20
|
What's your favourite IRB tip or trick? It could be a handy shortcut within the IRB console itself or maybe a .irbrc customization. I really like that you can type an underscore to retrieve the result of the last expression.
|
||
|
|
|
|
IRB subsessions let you try things without ending or affecting any of your existing subsessions. The commands to work with subsessions are:
>> my_string = "foo"
=> "foo"
>> irb
>> my_string
NameError: undefined local variable or method `my_string' for main:Object
from (irb#1):1
>> jobs
=> #0->irb on main (#: stop)
#1->irb#1 on main (#: running)
>> fg 0
=> #, @signal_status=:IN_EVAL, @scanner=#>
>> my_string
=> "foo"
|
||||
|
|
|
I really like Wirble, it adds color coding and persistent history and even tab completion. |
||
|
|
|
I like to have a quick way to benchmark a piece of code. This was inspired by one of the Rubinius devs:
Can be used like this for the default 100 executions:
Or like this for more:
|
||
|
|
|
|
The ability to assign from the last expression after the fact:
Saves a lot of typing when you forget that you really wanted to assign that last expresion to a variable. |
||
|
|
|
Funny coming back to an old question I contributed to :-) Here's another tool I added to my IRB config. Very practical for exploring unfamiliar classes and apis:
This lets me see only non trivial methods in a sane order on any class or instance I'm exploring. |
||||
|
|
|
I like utility belt. Particularly the editor integration is nice as is the ability to google straight from irb. Also it includes Wirble and has some nice tricks for Mac OS X clipboard interaction. |
||
|
|
|
|
I wrote up a comprehensive tutorial on irb commands like fg and jobs. |
||
|
|
|
|
Returning nil after a command like this. Example from Rails:
Avoid screenfuls like this:
Simple. |
|||
|
|
|
The simplest of my tips is simply to always have a hash and an array pre-defined. That way I don't have to whip up something when I'm messing around trying out Enumerable, Array or Hash methods.
|
||
|
|
|
|
I install wirble Enables Colourisation and gets the readline support for completion/scrollback going without having to remember a bunch of incantations
<snip> |
||
|
|
|
|
I love this one. You can fetch documentation inline by prepending ri_ to any method. It gives you inline documentation like this:
|
||
|
|
|
A while ago, I messed around with jruby and rubinius regularly. Since I had a slightly pimped up irbrc, I always had problems with dependencies, like gems who didn't work or weren't installed on a given runtime. So I concocted a require for runtime tramps :-) It accepts a block, which is executed if a library is successfully loaded. Otherwise a simple message is printed.
This then lets me require straightforward stuff:
Or Stuff requiring configuration
|
|||
|
|
|
|
I have customized the color scheme for wirble behind a white-background terminal.
|
||
|
|
|
|
Different twist on Wirble color customization:
|
||
|
|
|
|
I use this trick sometimes when reading other peoples code, You can find out who defines a method using this approach: object.method(:method_name)
These are some simple examples, it can be really handy when you are tracking down functionality in a plugin or gem. I found this originally here |
||
|
|
|
|
I have these to help keep output manageable:
Instead of a screen full of results it returns [ ... 22 elements ... ] if there are more than 20 elements returned. Got it off a website so attribution to them (I've forgotten the specific site). |
||
|
|
|
|
I like starting irb as a poor-mans debugger when the objects I would like to inspect are too complicated to print.
On a side-note, I tend to just use irb/completion, which is bundled with ruby instead of wirble. |
||
|
|