shutting irb up

A

Ara.T.Howard

i looked forever, didn't find this, and am posting for posterity

harp:~ > cat .irbrc
IRB.conf[:pROMPT][ IRB.conf[:pROMPT_MODE] ][:RETURN]=''


harp :~ > irb
irb(main):001:0> 42
irb(main):002:0> 43
irb(main):003:0> puts 42
42
irb(main):004:0> p 42
42
irb(main):005:0> p 'no echo'
"no echo"
irb(main):006:0> 'no echo'


-a
 
G

Giles Bowkett

That's a service to humanity.

i looked forever, didn't find this, and am posting for posterity

harp:~ > cat .irbrc
IRB.conf[:pROMPT][ IRB.conf[:pROMPT_MODE] ][:RETURN]=''


harp :~ > irb
irb(main):001:0> 42
irb(main):002:0> 43
irb(main):003:0> puts 42
42
irb(main):004:0> p 42
42
irb(main):005:0> p 'no echo'
"no echo"
irb(main):006:0> 'no echo'


-a
 
J

Joel VanderWerf

Garance said:
i looked forever, didn't find this, and am posting for posterity

harp:~ > cat .irbrc
IRB.conf[:pROMPT][ IRB.conf[:pROMPT_MODE] ][:RETURN]=''

harp :~ > irb
irb(main):001:0> 42
irb(main):002:0> 43
irb(main):003:0> puts 42
42
irb(main):004:0> p 42
42
irb(main):005:0> p 'no echo'
"no echo"
irb(main):006:0> 'no echo'



Hmm, that's pretty neat. It seems like it only works in .irbrc. It'd be
nice
if one could turn that off in the middle of a session in irb. Still, it's
nice
to know it can be turned off at all! Thanks.

You can turn it on and off by destructively modifying the string, this way:

irb(main):027:0> IRB.conf[:pROMPT][ IRB.conf[:pROMPT_MODE] ][:RETURN]
=> "=> %s\n"
irb(main):028:0> IRB.conf[:pROMPT][ IRB.conf[:pROMPT_MODE]
][:RETURN].replace('')
irb(main):029:0> 1+2
irb(main):030:0> IRB.conf[:pROMPT][ IRB.conf[:pROMPT_MODE]
][:RETURN].replace("=> %s\n")
=> "=> %s\n"
irb(main):031:0> 1+2
=> 3

It should be pretty easy to define a function in your .irbrc that wraps
this up nicely....
 
R

Rick DeNatale

irb(main):028:0> IRB.conf[:pROMPT][ IRB.conf[:pROMPT_MODE]
][:RETURN].replace('')
irb(main):029:0> 1+2

Is this bound to some specific version of Ruby/IRB because it doesn't seem
to be working for me either in .irbrc or IRB itself:
IRB.conf[:pROMPT][ IRB.conf[:pROMPT_MODE] ][:RETURN].replace( "" )

I put this in my .irbc

module IRB
def self.result_format
conf[:pROMPT][conf[:pROMPT_MODE]][:RETURN]
end

def self.result_format=(str)
result_format.replace(str)
end

def self.show_results
self.result_format = "=> %s\n"
end

def self.hide_results
self.result_format = ''
end
end

rick@frodo:~$ irb
irb(main):001:0> 1+2
=> 3
irb(main):002:0> IRB.result_format
=> "=> %s\n"
irb(main):003:0> IRB.hide_results
irb(main):004:0> 1+2
irb(main):005:0> IRB.show_results
=> "=> %s\n"
irb(main):006:0> 1+2
=> 3
irb(main):007:0>

I'm not sure that I'm in love with my naming, but it does seem to
work.

One thing I just discovered. I've got a few different versions of irb
installed.

If I try to run irb1.8.5 it doesn't seem to find ~/.irbc If I
symlinked ~/.irb1.8.5rc to ~/.irbrc it seemed to work.

YMMV


--
Rick DeNatale

My blog on Ruby
http://talklikeaduck.denhaven2.com/

IPMS/USA Region 12 Coordinator
http://ipmsr12.denhaven2.com/

Visit the Project Mercury Wiki Site
http://www.mercuryspacecraft.com/
 
J

Joel VanderWerf

Matt said:
irb(main):028:0> IRB.conf[:pROMPT][ IRB.conf[:pROMPT_MODE]
][:RETURN].replace('')
irb(main):029:0> 1+2

Is this bound to some specific version of Ruby/IRB because it doesn't seem
to be working for me either in .irbrc or IRB itself:
IRB.conf[:pROMPT][ IRB.conf[:pROMPT_MODE] ][:RETURN].replace( "" ) => ""
2 + 3
=> 5

Alia:~/Projects/cominded/chitchat matt$ irb -v
irb 0.9.5(05/04/13)

Alia:~/Projects/cominded/chitchat matt$ ruby -v
ruby 1.8.5 (2006-08-25) [i686-darwin8.8.2]


Works for me with the same irb version as yours, and ruby-1.8.4 and also
ruby-1.8.6-preview3, on ubuntu. Haven't tried 1.8.5 though.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top