Module: Helpstation
- Defined in:
- lib/helpstation.rb,
lib/helpstation/action.rb,
lib/helpstation/version.rb,
lib/helpstation/fetchers.rb,
lib/helpstation/observer.rb,
lib/helpstation/renderer.rb,
lib/helpstation/evaluator.rb,
lib/helpstation/processor.rb,
lib/helpstation/processors.rb,
lib/helpstation/legacy_process.rb
Defined Under Namespace
Modules: Fetchers, Processors Classes: Action, ErrorObserver, Evaluator, LegacyProcess, Observer, Processor, Renderer, SuccessObserver
Constant Summary collapse
- VERSION =
'0.1.6'
Class Method Summary collapse
Class Method Details
.build_substation(env) ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/helpstation.rb', line 16 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 |