Tagged Questions
Interactive Ruby Shell (IRB) is a shell for programming in Ruby. The program can be launched from a command prompt and allows the execution of Ruby commands line by line.
90
votes
31answers
11k views
What's Your Favourite IRB Trick?
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 ...
16
votes
6answers
4k views
14
votes
2answers
218 views
Why does the =~ operator only sometimes have side effects?
I've noticed a side effect in Ruby/Oniguruma that is only present in 1 out of 4 seemingly equivalent statements. Why is the variable day defined in 009, but not in 003, 005 or 007?
...
13
votes
6answers
3k views
How do you list the currently available objects in the current scope in ruby?
I'm new to ruby and I'm playing around with the irb.
I found that I can list methods of an object using the ".methods" method, and that self.methods sort of gives me what I want (similar to python's ...
12
votes
3answers
2k views
How do I drop to the IRB prompt from a running script?
Can I drop to an IRB prompt from a running Ruby script?
I want to run a script, but then have it give me an IRB prompt at a point in the program with the current state of the program, but not just by ...
11
votes
2answers
486 views
Anything like bpython for Ruby?
IRb is pretty plain compared to bpython, even when using wirble.
Is there any ruby equivalent of bpython?
9
votes
7answers
1k views
What alternatives to IRB are there?
In the python world, there are a number of alternative python interpreters that add cool additional features. One particularly useful example is bpython, which adds dynamic syntax highlighting, ...
9
votes
2answers
4k views
how to get the current working directory's absolute path from irb
I'm running Ruby on Windows though I don't know if that should make a difference. All I want to do is get the current working directory's absolute path. Is this possible from irb? Apparently from a ...
8
votes
1answer
160 views
Undoing auto-indentation
Wnen you use irb with auto indent mode, the end statements get indented one level extra
def foo
...
end
instead of showing the ordinary indenting convention:
def foo
...
end
because you ...
8
votes
1answer
441 views
How to suppress Rails console/irb outputs
I'm stuck with a pretty weird problem.
I was testing some db entries in our production server in Rails Console where almost all the commands were resulting a huge number of o/p lines, due to which ...
8
votes
5answers
1k views
Ruby. How can I copy and paste in irb on Windows?
How can I copy and paste in irb (Interactive Ruby Shell) on Windows?
7
votes
4answers
3k views
Ruby: How to make IRB print structure for Arrays and Hashes
When I make a new array/hash in irb, it prints out a nice format to show the structure, ex.
["value1", "value2", "value3"]
{"key1" => "value1"}
... but when I try to print out my variables using ...
6
votes
1answer
263 views
Pasting text into IRB is incredibly slow. Readline issue?
When I paste the following text into IRB or PRY running under ruby-enterprise-2011.03, it takes 13 seconds.
# Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor ...
6
votes
1answer
652 views
Ruby on Rails: Running a .rb file from IRB
I am starting out with Ruby on Rails. I am currently going through a tutorial where it says that I have to run a .rb file from IRB and that that will create a .xml file in my current directory. My ...
6
votes
3answers
1k views
Ruby 1.9.2: irb throws ArgumentError: invalid byte sequence in UTF-8 when entering German Umlaut
I want to enter German Umlauts in my irb but get a weird error. I can enter any character of äöü without problems, but each of ÄÖÜß leads to the following error:
$ irb
ruby-1.9.2-p136 :001 > ? # ...
6
votes
3answers
595 views
Reload rubygem in IRB
Is there a way to "reload" or "refresh" a rubygem in memory? As i'm playing in irb, occasionally I like to modify my gem files, and if i require the same gem, it does not update into memory and gives ...
6
votes
2answers
2k views
How do I compile Readline support into Ruby
My version of ruby was compiled with editline (on os x) and I miss the features of readline in irb.
How do I recompile ruby with readline support?
5
votes
1answer
94 views
Ruby: method argument default value
Let's see an example
ruby-1.9.2-p180 :001 > class Demo
ruby-1.9.2-p180 :002?> def self.class_method1(a,b=25)
ruby-1.9.2-p180 :003?> return a + b
ruby-1.9.2-p180 :004?> end
...
5
votes
1answer
202 views
IRB analogue of python -i
I want to use IRB to run a script then give me an interactive prompt. I do this with python -i xy.py in Python, however irb xy.rb exits after execution.
-i When a script is passed as first ...
5
votes
2answers
431 views
How can I clear the rails console history
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 ...
5
votes
2answers
836 views
Rails irb default directory
I'm trying to include a source code file when I run irb but irb is unable to find it.
For example, say I am in the following directory in terminal:
/dan/rubyapp/
Assume I have a file named ...
5
votes
1answer
414 views
'script/console test' with spork and rspec not loading the whole environment?
I'm trying to load up console to interact with some of my rspec mocking helpers. I expected that running script/console test would load an env similar to when I run spec. However, this doesn't appear ...
5
votes
4answers
561 views
Ruby IRB - Requires and Scope
Trying to understand this problem I'm running into.
I create file welcome.rb.
The contents of this file:
welcome_message = "hi there"
I then launch an irb session.
And type require 'welcome'. That ...
5
votes
3answers
2k views
How to get nice formatting in the Rails console
I want to get something like this to look nice:
>> ProductColor.all
=> [#<ProductColor id: 1, name: "White", internal_name: "White", created_at: "2009-06-10 04:02:44", updated_at: ...
4
votes
2answers
84 views
At runtime, How to check from where a module or class is loaded from?
I have a legacy rails app with a lot of funny (for useless) modules and classes in the global namespace. I want to know from which files or gems they have been required using rails c.
I know it ...
4
votes
1answer
74 views
Can I open a rails console in read-only mode?
I'm used to interrogating my rails db via script/console.
But in some instances I need to be exceptionally careful about not changing data, so I'd like to be able to open the console in a read-only ...
4
votes
2answers
880 views
Require command not working within bash irb on Snow Leopard
I am working on Zed Shaw's Learn Ruby the Hard Way Exercise 25
http://ruby.learncodethehardway.org/ex25.html
When I navigate to the directory that holds the ruby file ex25.rb and launch IRB, I get ...
4
votes
1answer
155 views
File.open and blocks in Ruby 1.8.7
I'm pretty new to ruby and I'm currently reading the Pickaxe book to get familiar with everything. I came across the File.open section where it discusses taking a block as a parameter to a File.open ...
4
votes
4answers
294 views
Is there something like Ruby's interactive shell (irb) for Java?
I spent the last year doing Ruby development, and during that time I discovered irb, which makes running little "code experiments" easy and fun. I've recently switched teams and am now doing Java ...
4
votes
2answers
272 views
How can I pass <arguments> to IRB if I don't specify <programfile>?
Since:
irb --help
Usage: irb.rb [options] [programfile] [arguments]
I know I can pass arguments to ARGV if I include a programfile
eg:
irb test.rb A B C
where test.irb is simply "p ARGV"
...
4
votes
2answers
411 views
How to avoid 'no such file to load — map_by_method' script/console with bundler?
I am running rails 2.3.10 with bundler. I use rvm, in global gemsets usually I put the gems useful for the irb. By default I had these there: map_by_method, what_methods, ap, net-http-spy, hirb, ...
4
votes
5answers
1k views
How to run IRB.start in context of current class
I've been just going through PragProg Continuous Testing With Ruby, where they talk about invoking IRB in context of current class to inspect the code manually.
However, they quote that if you invoke ...
4
votes
1answer
1k views
Rails3 irb console vs rails console?
Using Rails3 and Ruby 1.9.2, I am new, just learning Ruby/Rails--
When I run irb I end up with irb(main):001:0> which is fine.
However when I run rails console I also end up with ...
4
votes
1answer
682 views
rails console - display active record results in a table
Is there a way to display Active Record results in table format in the script/console environment?
4
votes
3answers
181 views
Where does the variable “p” get it's value from in ruby if it's not defined explicitly?
Question: Where does p get it's value from below and why does it happen?
Consider this irb session:
me@somewhere:~$ irb
irb(main):001:0> a
NameError: undefined local variable or method `a' for ...
4
votes
4answers
858 views
How to enable auto compleation in Ruby's IRB
When I use Merb's built in console, I get tab auto-completion similar to a standard bash prompt. I find this useful and would like to enable it in non-merb IRB sessions. How do I get auto-completion ...
4
votes
5answers
763 views
How to incorporate Interactive Ruby into my development process?
I am trying to find a better way to integrate IRB with my normal ruby devleopment. Currently I rarely use IRB with my code. I only use it to verify syntax or to try something small.
I know I can ...
3
votes
1answer
89 views
Why does Iconv work different in irb and the Ruby interpreter?
I have to convert Latin chars like éáéíóúÀÉÍÓÚ etc., into a string to similar ones without special accents or wired symbols:
é -> e
è -> e
Ä -> A
I have a file named "test.rb":
require ...
3
votes
1answer
67 views
How do I quit from debugger without exiting my IRB session?
This is a long standing source of frustration, but maybe there is something I'm missing. If i'm in the middle of debugging, and I want to exit the debugger and return to IRB or Rails Console, "quit" ...
3
votes
1answer
129 views
Load and use fixture in rails console
I wonder if there's a way to load and/or use fixture in rails console. Actually, I'd like to create a user from my fixture users.yml to do some testing without having to go through all the "pain" of ...
3
votes
3answers
74 views
Reading docs in irb
One thing I miss about ipython is it has a ? operator which diggs up the docs for a particular function.
I know ruby has a similar command line tool but it is extremely inconvenient to call it while ...
3
votes
1answer
95 views
Ruby / IRB: set instance variable to private or otherwise invisible?
In Ruby, when I do something like this:
class Foo
...
def initialize( var )
@var = var
end
...
end
Then if I return a foo in console I get this object representation:
...
3
votes
3answers
193 views
Is it possible to configure the IRB prompt to change dynamically?
I'd like to navigate around the filesystem in IRB and have the prompt change to reflect the current working directory, but I can't figure out how to make the prompt update after each command. ...
3
votes
1answer
80 views
Ruby puts not outputting in real time
I've started some problems on Project Euler. One of the questions:
The prime factors of 13195 are 5, 7, 13 and 29.
What is the largest prime factor of the number 600851475143 ?
I have some code ...
3
votes
2answers
275 views
Backspace and arrow keys aren't working in IRB(Git Bash console) on windows machine
I just installed ruby 1.9.2 on windows machine and Backspace or any other arrow keys don't work. This happens only when I open IRB on Git Bash console. But it works fine on Windows console. Any help ...
3
votes
1answer
254 views
why irb plugins not loaded in rails console session?
I have installed both awsome print & hirb irb plugins to Ruby 1.9.2 through rvm. I can able to access it from irb session. But when i tried from rails console, i got the error
ruby-1.9.2-p180 ...
3
votes
2answers
379 views
Ruby Equivalent of Python “_”
In Python, you can use the _ field to grab the last computed value. That's really useful in IDLE. Does Ruby have an equivalent for IRB?
An example from Python:
>>> 2 + 2
4
>>> _
4
...
3
votes
2answers
283 views
Rails console tips, tricks and customizations
There's this great post on irb tricks, but what about further customizing Rails console behavior and output?
Awesome print and Hirb are great.
SQL logging is a must for me. In your ~/.irbrc paste:
...
3
votes
2answers
278 views
How can I send an line in TextMate to an irb process running in an Terminal window?
I often code with a TextMate window open, and an irb process in a Terminal window adjacent to it. I want to be able to press a key sequence in TextMate which does the following:
Copies the current ...
3
votes
4answers
255 views
Ruby's irb equivalent in Perl?
I'm from Ruby background. Just wanted to know if there is anything like Ruby's irb in perl?