method
coerce
v1_8_7_330 -
Show latest stable
- Class:
URI::Generic
coerce(oth)public
No documentation available.
# File lib/uri/generic.rb, line 1112
def coerce(oth)
case oth
when String
oth = URI.parse(oth)
else
super
end
return oth, self
end