method

add_class_variables_to_assigns

rails latest stable - Class: ActionController::Base

Method deprecated or moved

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

add_class_variables_to_assigns()
private

No documentation available.

# File actionpack/lib/action_controller/base.rb, line 1220
      def add_class_variables_to_assigns
        %w(view_paths logger template_class ignore_missing_templates).each do |cvar|
          @assigns[cvar] = self.send(cvar)
        end
      end