class Erb::Generators::Base

:nodoc:
:nodoc:
:nodoc:

def filename_with_extensions(name, file_format = format)

def filename_with_extensions(name, file_format = format)
  [name, file_format, handler].compact.join(".")
end

def format

def format
  :html
end

def formats

def formats
  [format]
end

def handler

def handler
  :erb
end