Module: Medi8::Handler
- Defined in:
- lib/medi8/handler.rb
Overview
The Handler module is used to define classes that can handle specific types of requests.
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
-
.included(base) ⇒ Object
This method is called when the module is included in a class.
Class Method Details
.included(base) ⇒ Object
This method is called when the module is included in a class.
7 8 9 |
# File 'lib/medi8/handler.rb', line 7 def self.included(base) base.extend(ClassMethods) end |