#!/usr/bin/ruby def dostuff() puts "dostuff" end class Test def dostuff() puts "Test.dostuff" end def run self.dostuff dostuff end end t = Test.new t.run