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