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.
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
IRB subsessions let you try things without ending or affecting any of your existing subsessions. The commands to work with subsessions are:
|
|||||||||
|
|
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. |
|||||||||||||
|
|
Returning nil after a command like this. Example from Rails:
Simple. Even simpler, just terminate the line with a
|
|||||||||
|
|
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:
|
||||
|
|
Awesome Print
|
|||||
|
|
Not exactly an IRB trick, but an alternative to IRB altogether: It is written from scratch and lets you:
|
||||
|
|
|
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:
|
||||
|
|
|
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 |
||||
|
|
|
Irb subsessions can take an object; that object will be "self" in the subsession
|
||||
|
|
|
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 wrote up a comprehensive tutorial on irb commands like fg and jobs. |
||||
|
|
|
I love this one. You can fetch documentation inline by prepending ri_ to any method. It gives you inline documentation like this:
|
||||
|
|
|
I install wirble Enables Colourisation and gets the readline support for completion/scrollback going without having to remember a bunch of incantations
<snip> |
||||
|
|
|
I use ORI gem. Watch intro screencast. Setup (
|
|
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 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. |
||||
|
|
|
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. |
||||
|
|
|
I have these to help keep output manageable:
Instead of a screen full of results it returns |
||||
|
|
|
I have customized the color scheme for wirble behind a white-background terminal.
|
||||
|
|
|
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! |
||||
|
|
|
Different twist on Wirble color customization:
|
||||
|
|
|
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
|
||||
|
|
|
If I have some object obj and want to call a method that, for example, starts with 'to_', I can quickly find it by doing the following:
Which returns an array of methods on obj that start with 'to_.' If you don't have an instance of a class, but still want to search for an instance method:
Also, #methods and #instance_methods both take a boolean argument that indicate if inherited methods should be included. So the following returns an array of names of instance methods defined on Klass specifically rather than any of its superclasses (e.g. Object):
|
||||
|
|
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 |
||||
|
|
|
(Mac users only) An instant drop-down Quake style ruby shell wherever you are!
|
||||
|
|
|
Irbtools also includes some general irb helpers, e.g. short load/require helpers:
|
||||
|
|
|
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/ |
||||
|
|
|
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
|
||||
|
|
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.