From: Mat Brown Date: 2009-06-28T01:11:13+09:00 Subject: Re: Trying to define a 'class' without using 'class' sentence On Sat, Jun 27, 2009 at 11:07, Fernando Guillen wrote: > Robert Dober wrote: > >> and from within Ruby there are several pieces of information you might >> find useful: >> >> http://pastie.org/526389 > > Thanks Robert.. very funny code :) > > But still I don't know too much about my interpreter: > >  $ ruby -e 'puts Object.constants.grep( /RUBY/ ).map{ |c| "##{[c, > Object.const_get(c)].inspect}"}' >  #["RUBY_VERSION", "1.8.6"] >  #["RUBY_PATCHLEVEL", 287] >  #["RUBY_RELEASE_DATE", "2008-08-11"] >  #["RUBY_PLATFORM", "universal-darwin9.0"] > > :/ > > Is this the relevant information about the kind of my interpreter is? > >  #["RUBY_PLATFORM", "universal-darwin9.0"] > > > -- > Posted via http://www.ruby-forum.com/. > > Hi Fernando, You're running the standard 1.8 Ruby interpreter, otherwise known as MRI. Mat