Flowdock
method

add_class_variables_to_assigns

Importance_0
v2.0.3 - Show latest stable - 0 notes - Class: ActionController::Base
add_class_variables_to_assigns() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.