module BuildMaster class SourceContent attr_reader :path, :document def initialize(path, document) @path = path @document = document end end end