Module: Roda::RodaPlugins::Component::RequestClassMethods
- Defined in:
- lib/roda/plugins/component.rb
Instance Method Summary collapse
Instance Method Details
#component_assets_route_regex ⇒ Object
165 166 167 |
# File 'lib/roda/plugins/component.rb', line 165 def component_assets_route_regex component_opts[:assets_route] end |
#component_opts ⇒ Object
161 162 163 |
# File 'lib/roda/plugins/component.rb', line 161 def component_opts roda_class.component_opts end |
#component_route_regex ⇒ Object
169 170 171 172 173 |
# File 'lib/roda/plugins/component.rb', line 169 def component_route_regex Regexp.new( component_opts[:route] + "/([a-zA-Z0-9_-]*)/([a-zA-Z0-9_-]*)/([a-zA-Z0-9_-]*)" ) end |