Class: Mustermann::Router::Rack
- Defined in:
- lib/praxis/router/rack.rb
Overview
Simple pattern based router that allows matching paths to a given Rack application.
Instance Attribute Summary
Attributes inherited from Simple
Instance Method Summary collapse
-
#initialize(env_prefix: 'mustermann', params_key: "#{env_prefix}.params", pattern_key: "#{env_prefix}.pattern", **options, &block) ⇒ Rack
constructor
A new instance of Rack.
Methods inherited from Simple
Constructor Details
#initialize(env_prefix: 'mustermann', params_key: "#{env_prefix}.params", pattern_key: "#{env_prefix}.pattern", **options, &block) ⇒ Rack
Returns a new instance of Rack.
30 31 32 33 34 35 |
# File 'lib/praxis/router/rack.rb', line 30 def initialize(env_prefix: 'mustermann', params_key: "#{env_prefix}.params", pattern_key: "#{env_prefix}.pattern", **, &block) @params_key = params_key @pattern_key = pattern_key [:default] = [404, { 'Content-Type' => 'text/plain', 'X-Cascade' => 'pass' }, ['Not Found']] unless .include? :default super(**, &block) end |