#encoding: utf-8 module PointRb class Project attr_reader :name, :path def initialize(name) @name = name @path = File.join(Dir.pwd, name) end end end