Flowdock
method

included

Importance_0
v2.0.3 - Show latest stable - 0 notes - Class: ActionController::Assertions
included(klass) 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/assertions.rb, line 46
    def self.included(klass)
      %w(response selector tag dom routing model).each do |kind|
        require "action_controller/assertions/#{kind}_assertions"
        klass.module_eval { include const_get("#{kind.camelize}Assertions") }
      end
    end
Register or log in to add new notes.