From: Lin Wj Date: 2009-09-18T19:10:12+09:00 Subject: dynamically created functions? def self.developer_options(*args) fetch_options({'area'=>'developers','index' => args.first}) end def self.priority_options(*args) fetch_options({'area'=>'priority','index' => args.first}) end def self.status_options(*args) fetch_options({'area'=>'status','index' => args.first}) end is there anyway to dynamically create methods with a specific name ? ie: create methods which are def self.??????_options(*args) fetch_options({'area'=>'?????','index' => args.first}) end -- Posted via http://www.ruby-forum.com/.