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.
feedback
|
|
IRB subsessions let you try things without ending or affecting any of your existing subsessions. The commands to work with subsessions are:
| |||||
feedback
|
|
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. | |||||
feedback
|
|
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. | |||||||||||||
feedback
|
|
I really like Wirble, it adds color coding and persistent history and even tab completion. | |||||
feedback
|
|
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:
| ||||
|
feedback
|
|
Returning nil after a command like this. Example from Rails:
Simple. Even simpler, just terminate the line with a
| |||||
feedback
|
Awesome Print
| |||||
feedback
|
|
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 | ||||
|
feedback
|
|
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.
| ||||
|
feedback
|
|
This is inspired by webmat's "interesting_methods" answer:
This gives you a colputs method that lets you print out long arrays in columns. show_methods uses colputs. Here's an example:
| ||||
|
feedback
|
|
Irb subsessions can take an object; that object will be "self" in the subsession
| ||||
|
feedback
|
|
Not exactly an IRB trick, but an alternative to IRB altogether: It is written from scratch and lets you:
| ||||
|
feedback
|
|
I wrote up a comprehensive tutorial on irb commands like fg and jobs. | ||||
|
feedback
|
|
I install wirble Enables Colourisation and gets the readline support for completion/scrollback going without having to remember a bunch of incantations
<snip> | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
I love this one. You can fetch documentation inline by prepending ri_ to any method. It gives you inline documentation like this:
| ||||
|
feedback
|
|
I use ORI gem. Watch intro screencast. Setup (
|
|
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. | ||||
|
feedback
|
|
I have customized the color scheme for wirble behind a white-background terminal.
| ||||
|
feedback
|
|
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). | ||||
|
feedback
|
|
Different twist on Wirble color customization:
| ||||
|
feedback
|
|
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 more forgiving require. It accepts a block, which is executed if a library is successfully loaded. Otherwise a simple error message is printed.
This then lets me require straightforward stuff:
Or stuff requiring configuration
| ||||
|
feedback
|
|
One thing not noted above is the fact you can IRB into classes.
Or into String or any other class available to you. This is handy when working on working on classes. | ||||
|
feedback
|
|
Looksee is the best! It gives you a great overview about the methods of your object:
Try it out, it is much better than what I can publish here! | ||||
|
feedback
|
|
I like: irb_rocket | ||||
|
feedback
|
Outputing log on the irb script/consoleThis is more of a rails console trick than a plain irb trick. I often want to check the queries that are being fired while working on the rails console. I achieve that by adding following line of code in my environment.rb config.
The | ||||
|
feedback
|
|
(Mac users only) An instant drop-down Quake style ruby shell wherever you are!
| ||||
|
feedback
|
|
Irbtools also includes some general irb helpers, e.g. short load/require helpers:
| ||||
|
feedback
|
|
Easily fetch the results of a call to a path on your app: http://snipplr.com/view/37506/fetch-a-page-from-your-site-from-console/ | ||||
|
feedback
|
|
I use stuff brought in by irb_hacks gem. Snippets, save a lot of keystrokes when working on a specific feature:
Interactively browsing program data with GNU
| ||||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.