Flowdock
method

should_not_skip?

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActionController::Filters::Filter
should_not_skip?(controller) 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/filters.rb, line 138
        def should_not_skip?(controller)
          if options[:skip]
            !included_in_action?(controller, options[:skip])
          else
            true
          end
        end
Register or log in to add new notes.