module Gator class Project attr_reader :name def initialize( name ) @name = name end end end