Method: URI::Generic#coerce
- Defined in:
- lib/extensions/uri/uri/generic.rb
#coerce(oth) ⇒ Object
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 |
# File 'lib/extensions/uri/uri/generic.rb', line 1126 def coerce(oth) case oth when String oth = parser.parse(oth) else super end return oth, self end |