class Thor::Actions::CreateFile

def render


Holds the content to be added to the file.
def render
  @render ||= if data.is_a?(Proc)
                data.call
              else
                data
              end
end