Ruby/Rails : Ruby Core Classes : Module

Context of the notion in the technology: Document / Topc: Ruby/Rails
Document / Topc: Ruby Core Classes
Related Keywords: Ruby Rails Ruby Core Classes Module
Help URL: http://ruby-doc.org/core/classes/Module.html


Items Related to Module

Inner Elements of Module

Module contains following items:
  • < ()
  • <= ()
  • <=> ()
  • == ()
  • === ()
  • > ()
  • >= ()
  • alias_method (alias method)
  • ancestors
  • append_features (append features)
  • attr
  • attr_accessor (attr accessor)
  • attr_reader (attr reader)
  • attr_writer (attr writer)
  • autoload
  • autoload? (autoload )
  • class_eval (class eval)
  • class_variable_get (class variable get)
  • class_variable_set (class variable set)
  • class_variables (class variables)
  • const_defined? (const defined )
  • const_get (const get)
  • const_missing (const missing)
  • const_set (const set)
  • constants
  • define_method (define method)
  • extend_object (extend object)
  • extended
  • freeze
  • include
  • include? (include )
  • included
  • included_modules (included modules)
  • instance_method (instance method)
  • instance_methods (instance methods)
  • method_added (method added)
  • method_defined? (method defined )
  • method_removed (method removed)
  • method_undefined (method undefined)
  • module_eval (module eval)
  • module_function (module function)
  • name
  • nesting
  • new
  • private
  • private_class_method (private class method)
  • private_instance_methods (private instance methods)
  • private_method_defined? (private method defined )
  • protected
  • protected_instance_methods (protected instance methods)
  • protected_method_defined? (protected method defined )
  • public
  • public_class_method (public class method)
  • public_instance_methods (public instance methods)
  • public_method_defined? (public method defined )
  • remove_class_variable (remove class variable)
  • remove_const (remove const)
  • remove_method (remove method)
  • to_s (to s)
  • undef_method (undef method)


Ruby on Rails, often called RoR, or just Rails, is an open source web application framework written in Ruby that closely follows the Model-View-Controller (MVC) architecture. It strives for simplicity and allowing real-world applications to be developed in less code than other frameworks and with a minimum of configuration. The Ruby programming language allows for extensive metaprogramming, which Rails makes much use of. This results in a syntax that many of its users find to be very readable. Rails is primarily distributed through RubyGems, which is the official packaging format and distribution channel for Ruby libraries and applications.
   -- wikipedia.org

Home