class RubyCritic::Generator::Text::Lint
def erb_template
def erb_template @erb_template ||= ERB.new(File.read(TEMPLATE_PATH), nil, '-') end
def erb_template
def erb_template self.class.erb_template end
def file_directory
def file_directory @file_directory ||= Pathname.new(Config.root) end
def file_pathname
def file_pathname Pathname.new(file_directory).join FILE_NAME end
def initialize(analysed_module)
def initialize(analysed_module) @analysed_module = analysed_module end
def render
def render erb_template.result(binding) end