Class: Charyf::Engine::Routing::Base
- Includes:
- Strategy::BaseClass
- Defined in:
- lib/charyf/engine/routing/router.rb
Direct Known Subclasses
Instance Method Summary collapse
- #draw(&block) ⇒ Object
- #invalid ⇒ Object
-
#process(context) ⇒ Object
Context -> Controller.
- #unknown ⇒ Object
Methods included from Strategy::BaseClass
Instance Method Details
#draw(&block) ⇒ Object
13 14 15 |
# File 'lib/charyf/engine/routing/router.rb', line 13 def draw(&block) raise Charyf::Utils::NotImplemented.new end |
#invalid ⇒ Object
26 27 28 |
# File 'lib/charyf/engine/routing/router.rb', line 26 def invalid Result.new(nil, 'skill', 'invalid') end |
#process(context) ⇒ Object
Context -> Controller
18 19 20 |
# File 'lib/charyf/engine/routing/router.rb', line 18 def process(context) raise Charyf::Utils::NotImplemented.new end |