# File lib/templater/cli/generator.rb, line 156
      def say_status(status, template, color = nil)
        status_flag = "[#{status.to_s.upcase}]".rjust(12)
        if color and not @options[:no_color]
          say "<%= color('#{status_flag}', :#{color}) %>  " + template.relative_destination
        else
          say "#{status_flag}  " + template.relative_destination
        end
      end