Type:
Class

Core extension library

Rake extensions to Module.

A Module is a collection of methods and constants. The methods in a module may be instance methods or module methods. Instance methods appear as methods in a class when the module is included, module methods do not. Conversely, module methods may be called without creating an encapsulating object, while instance methods may not. (See Module#module_function)

In the descriptions that follow, the parameter sym refers to a symbol, which is either a quoted string or a Symbol (such as :name).

1
2
3
4
5
6
7
8
9
10
module Mod
  include Math
  CONST = 1
  def meth
    #  ...
  end
end
Mod.class              #=> Module
Mod.constants          #=> [:CONST, :PI, :E]
Mod.instance_methods   #=> [:meth]
method_defined?
  • References/Ruby on Rails/Ruby/Classes/Module

mod.method_defined?(symbol) â true or false Instance Public methods Returns

2025-01-10 15:47:30
name
  • References/Ruby on Rails/Ruby/Classes/Module

mod.name â string Instance Public methods Returns the name of the module

2025-01-10 15:47:30
yaml_as
  • References/Ruby on Rails/Ruby/Classes/Module

yaml_as(url) Instance Public methods Alias for:

2025-01-10 15:47:30
autoload
  • References/Ruby on Rails/Ruby/Classes/Module

mod.autoload(module, filename) â nil Instance Public methods Registers filename

2025-01-10 15:47:30
nesting
  • References/Ruby on Rails/Ruby/Classes/Module

Module.nesting â array Class Public methods Returns the list of Modules

2025-01-10 15:47:30
rake_original_const_missing
  • References/Ruby on Rails/Ruby/Classes/Module

rake_original_const_missing(const_name) Instance Public methods Rename the original

2025-01-10 15:47:30
<=>
  • References/Ruby on Rails/Ruby/Classes/Module

module other_module â -1, 0, +1, or nil Instance Public methods ComparisonâReturns

2025-01-10 15:47:30
module_eval
  • References/Ruby on Rails/Ruby/Classes/Module

mod.module_eval {|| block } â obj Instance Public methods Evaluates

2025-01-10 15:47:30
remove_class_variable
  • References/Ruby on Rails/Ruby/Classes/Module

remove_class_variable(sym) â obj Instance Public methods Removes the definition

2025-01-10 15:47:30
const_defined?
  • References/Ruby on Rails/Ruby/Classes/Module

mod.const_defined?(sym, inherit=true) â true or false Instance Public methods Says

2025-01-10 15:47:30