Class: UrlRegexp::Node
- Inherits:
-
Object
- Object
- UrlRegexp::Node
- Defined in:
- lib/url_regexp/node.rb
Instance Method Summary collapse
Instance Method Details
#append(_) ⇒ Object
3 4 5 |
# File 'lib/url_regexp/node.rb', line 3 def append(_) raise NotImplementedError end |
#to_regexp ⇒ Object
11 12 13 14 |
# File 'lib/url_regexp/node.rb', line 11 def to_regexp rs = to_regexp_s Regexp.new(rs) end |
#to_regexp_s ⇒ Object
7 8 9 |
# File 'lib/url_regexp/node.rb', line 7 def to_regexp_s raise NotImplementedError end |