method

load_template

rails latest stable - Class: Rails::TemplateRunner

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

load_template(template)
public

No documentation available.

# File railties/lib/rails_generator/generators/applications/app/template_runner.rb, line 23
    def load_template(template)
      begin
        code = open(template).read
        in_root { self.instance_eval(code) }
      rescue LoadError, Errno::ENOENT => e
        raise "The template [#{template}] could not be loaded. Error: #{e}"
      end
    end