method

load!

rails latest stable - Class: ActionView::Template::EagerPath

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!()
public

No documentation available.

# File actionpack/lib/action_view/template.rb, line 65
      def load!
        return if @loaded

        @paths = {}
        templates_in_path do |template|
          template.load!
          template.accessible_paths.each do |path|
            @paths[path] = template
          end
        end
        @paths.freeze
        @loaded = true
      end