Class: Dragonfly::UrlMapper::Segment
- Defined in:
- lib/dragonfly/url_mapper.rb
Instance Attribute Summary collapse
-
#param ⇒ Object
Returns the value of attribute param.
-
#pattern ⇒ Object
Returns the value of attribute pattern.
-
#seperator ⇒ Object
Returns the value of attribute seperator.
Instance Method Summary collapse
Instance Attribute Details
#param ⇒ Object
Returns the value of attribute param
7 8 9 |
# File 'lib/dragonfly/url_mapper.rb', line 7 def param @param end |
#pattern ⇒ Object
Returns the value of attribute pattern
7 8 9 |
# File 'lib/dragonfly/url_mapper.rb', line 7 def pattern @pattern end |
#seperator ⇒ Object
Returns the value of attribute seperator
7 8 9 |
# File 'lib/dragonfly/url_mapper.rb', line 7 def seperator @seperator end |
Instance Method Details
#regexp_string ⇒ Object
9 10 11 |
# File 'lib/dragonfly/url_mapper.rb', line 9 def regexp_string @regexp_string ||= "(#{Regexp.escape(seperator)}#{pattern}+?)?" end |