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