module Massimo module Commands class Build < Base def banner %{ #{Massimo::UI.color('massimo build', :cyan)} Builds the site from the source files. } end def run exit Massimo::UI.report_errors { site.process Massimo::UI.say 'massimo has built your site', :growl => true } end end end end