Class: URI::Generic
- Inherits:
-
Object
- Object
- URI::Generic
- Defined in:
- lib/tinyatom/uri.rb
Instance Method Summary collapse
-
#domain ⇒ Object
Add domain method to URI.
Instance Method Details
#domain ⇒ Object
Add domain method to URI.
6 7 8 9 10 |
# File 'lib/tinyatom/uri.rb', line 6 def domain if (host and (d = host[/[a-z\d-]+\.[a-z]{2,}(\.[a-z]{2})?$/])) d.downcase end end |