> ##### > # File: blah.rb > module Blah > def something > puts "something" > end > def another > puts "another" > end > end I meant: ##### # File: blah.rb module Blah def Blah.something puts "something" end def Blah.another puts "another" end end -- Posted via http://www.ruby-forum.com/.