From: Brian Candler Date: 2008-09-20T04:48:20+09:00 Subject: Re: How to provide variable to irb session Bryan Richardson wrote: > Hello all, > > Can anyone tell me how I would go about providing a variable to an irb > session? For example, see the following screenshot from the Metasploit > Meterpreter in irb mode. > > http://www.metasploit.com/images/gallery/msf3-meterp-irb.jpg > > Does anyone know how they are actually providing the 'client' variable > to the irb session? Is it definitely a variable, not a method? This post shows how to start an IRb session within the context of an arbitary object: http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/244139 So you can create your own object class with a "client" method, create an instance of this object, and start IRb such that "self" is this object. -- Posted via http://www.ruby-forum.com/.