Module: Roda::RodaPlugins::Component::RequestClassMethods
- Defined in:
- lib/roda/plugins/component.rb
Instance Method Summary collapse
Instance Method Details
#component_assets_route_regex ⇒ Object
210 211 212 |
# File 'lib/roda/plugins/component.rb', line 210 def component_assets_route_regex component_opts[:assets_route] end |
#component_opts ⇒ Object
206 207 208 |
# File 'lib/roda/plugins/component.rb', line 206 def component_opts roda_class.component_opts end |
#component_route_regex ⇒ Object
214 215 216 217 218 |
# File 'lib/roda/plugins/component.rb', line 214 def component_route_regex Regexp.new( component_opts[:route] + "/([a-zA-Z0-9_-]*)/([a-zA-Z0-9_-]*)/([a-zA-Z0-9_-]*)" ) end |