1
vote
1answer
14 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?
1
vote
1answer
22 views
History not saving
Why is my irb history no longer saving?
0
votes
1answer
34 views
can’t start script/console with Ruby 1.9 and Rails 2.3.4
Hi,
I'm trying to start the console (irb) in Ruby 1.9 with Rails 2.3.4. I have two versions installed of Ruby (1.9 & 1.8.6) and I run the Ruby 1.9 by calling: rake19, ruby19, …
3
votes
2answers
39 views
Ruby Configure IRB to Pretty_Inspect by Default
Hi Guys,
I'm fairly new to ruby, and am configuring IRB. I like pretty print (require 'pp'), but it seems a hassle to always type pp for it to pretty print it. What I'd like to …
0
votes
1answer
40 views
Can’t find gems in irb: “NameError: uninitialized constant Gem from (irb)”
When I run a Rails app it finds all of my installed gems correctly.
This is the first time I tried to call some gems from inside irb and it couldn't find them.
blocke:~$ irb
irb( …
1
vote
2answers
143 views
How do I get the “irb(main):001:0>” prompt instead of “>>”
Hi,
Ruby is preinstalled on my Mac and so I wanted to have a look at it. First thing I noticed, is that irb prompts >> instead of irb(main):001:0>. I can't find anything on how to …
0
votes
2answers
86 views
How come when I run ruby.exe / IRB all I get is a blank DOS shell?
Hi,
I installed ruby 1.9.1p243 (2009-07-16 revision 24175) [i386-mingw32] on my Windows XP laptop.
When I run ruby.exe I get a blank DOS Shell window. No expected "irb(main):001: …
6
votes
5answers
388 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?
0
votes
1answer
39 views
Why does this code produce a nil following a Proc.call?
C:\>irb
irb(main):001:0> s = Proc.new { puts "Hello" }
=> #<Proc:0x04051780@(irb):1>
irb(main):002:0> s.call
Hello
=> nil
What causes the nil?
ruby 1.8.6 (2 …
2
votes
4answers
96 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 …
17
votes
17answers
3k 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 t …
1
vote
4answers
89 views
How would you go about making an online IRB that runs in the browser
Im wondering how to go about creating an online IRB that runs in the browser. I have an idea to include an irb console in my blog and give the option for users to send code blocks …
1
vote
3answers
176 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", …
1
vote
5answers
107 views
So maybe I’m not getting the idea in Ruby but I have a question about Enumerables inject.
The |m,k| thing kind of throws me off. Does this have anything to do with order of precedence?
m standing for 0 (or 1 in some languages) and k for the last in the Array/Hash whatev …
3
votes
1answer
113 views
drop to irb prompt from ruby
Can I drop to an irb prompt from a 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 …
