module Hubdown class PageBuilder def initialize body @body = body end def get_page page = "#{get_head}#{@body}#{get_closing}" page end def get_head opening = < OUTPUT
FILE_NAME
EOF end def get_closing closing = <
EOF end end end