Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.ruby > #3344

Re: class_eval doesn't find const_missing

From Brian Candler <b.candler@pobox.com>
Newsgroups comp.lang.ruby
Subject Re: class_eval doesn't find const_missing
Date 2011-04-21 16:26 -0500
Organization Service de news de lacave.net
Message-ID <a7ee18d4b0a173afec3a1bdd1ff0c1b9@ruby-forum.com> (permalink)
References <094bd73f3389eb03672e8bb25c9b8ec6@ruby-forum.com>

Show all headers | View raw


If you add this code:

class Object
  def self.const_missing(constant)
    return "this #{constant} found in obj!"
  end
end

Then you get the following:

>> DummyClass.class_eval "NAME"
=> "dummy constant"
>> DummyClass.class_eval {NAME}
=> "this NAME found in obj!"
>> NAME
=> "this NAME found in obj!"

Not sure if that helps you much, but it seems that class_eval doesn't 
affect the constant lookup in the way that you'd like.

-- 
Posted via http://www.ruby-forum.com/.

Back to comp.lang.ruby | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

class_eval doesn't find const_missing Andrew Berkeley <andrew.berkeley.is@googlemail.com> - 2011-04-21 14:20 -0500
  Re: class_eval doesn't find const_missing Stephen Prater <stephenp@agrussell.com> - 2011-04-21 16:34 -0500
    Re: class_eval doesn't find const_missing 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-21 18:14 -0500
  Re: class_eval doesn't find const_missing 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-21 17:38 -0500
    Re: class_eval doesn't find const_missing 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-21 18:29 -0500
  Re: class_eval doesn't find const_missing Brian Candler <b.candler@pobox.com> - 2011-04-21 16:26 -0500
  Re: class_eval doesn't find const_missing Andrew Berkeley <andrew.berkeley.is@googlemail.com> - 2011-04-22 14:43 -0500

csiph-web