Module: Helpstation
- Defined in:
- lib/helpstation.rb,
lib/helpstation/action.rb,
lib/helpstation/version.rb,
lib/helpstation/observer.rb,
lib/helpstation/renderer.rb,
lib/helpstation/evaluator.rb,
lib/helpstation/processor.rb,
lib/helpstation/legacy_process.rb
Defined Under Namespace
Classes: Action, ErrorObserver, Evaluator, LegacyProcess, Observer, Processor, Renderer, SuccessObserver
Constant Summary collapse
- VERSION =
'0.1.2'
Class Method Summary collapse
Class Method Details
.build_substation(env) ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/helpstation.rb', line 12 def self.build_substation(env) Substation::Environment.build(env) do register :process, Substation::Processor::Evaluator::Request register :call, Substation::Processor::Evaluator::Pivot register :render, Substation::Processor::Transformer::Outgoing end end |