Flowdock
method

without_modules

Importance_0
Ruby on Rails latest stable (v3.2.13) - 0 notes - Class: ActionController::Base
without_modules(*modules) public

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 174
    def self.without_modules(*modules)
      modules = modules.map do |m|
        m.is_a?(Symbol) ? ActionController.const_get(m) : m
      end

      MODULES - modules
    end
Register or log in to add new notes.