From: Sateesh Kambhamapati Date: 2010-06-10T18:53:38+09:00 Subject: Metaprograming i would like to know which methods are called by the object created by class with in class. If Suppose if particular method is not there it invokes method_missing.But i want it invoke directly my class .so i would like create that method dynamically eg: class Flower def rose puts "rose is beatiful" end end f=flower.new f.rose-------------------->It gives me rose but now f.jasmine------------------->It calls method_missing but i want it comes to my class "Flower" So i Want to know which methods are invoked by my "Flower" object Please help me -- Posted via http://www.ruby-forum.com/.