Module: Roda::RodaPlugins::Component::RequestClassMethods
- Defined in:
- lib/roda/plugins/component.rb
Instance Method Summary collapse
Instance Method Details
#component_assets_route_regex ⇒ Object
189 190 191 |
# File 'lib/roda/plugins/component.rb', line 189 def component_assets_route_regex component_opts[:assets_route] end |
#component_opts ⇒ Object
185 186 187 |
# File 'lib/roda/plugins/component.rb', line 185 def component_opts roda_class.component_opts end |
#component_route_regex ⇒ Object
193 194 195 196 197 |
# File 'lib/roda/plugins/component.rb', line 193 def component_route_regex Regexp.new( component_opts[:route] + "/([a-zA-Z0-9_-]*)/([a-zA-Z0-9_-]*)/([a-zA-Z0-9_-]*)" ) end |