method
without_modules
v3.0.0 -
Show latest stable
- Class:
ActionController::Base
without_modules(*modules)public
No documentation available.
# File actionpack/lib/action_controller/base.rb, line 170
def self.without_modules(*modules)
modules = modules.map do |m|
m.is_a?(Symbol) ? ActionController.const_get(m) : m
end
MODULES - modules
end