method

include_all_modules_from

rails latest stable - Class: Module

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.2.1) is shown here.

include_all_modules_from(parent_module)
public

No documentation available.

# File railties/lib/console_with_helpers.rb, line 2
  def include_all_modules_from(parent_module)
    parent_module.constants.each do |const|
      mod = parent_module.const_get(const)
      if mod.class == Module
        send(:include, mod)
        include_all_modules_from(mod)
      end
    end
  end