method
check_port
v1_8_7_72 -
Show latest stable
- Class:
URI::Generic
check_port(v)private
No documentation available.
# File lib/uri/generic.rb, line 402
def check_port(v)
return v unless v
if @registry || @opaque
raise InvalidURIError,
"can not set port with registry or opaque"
elsif !v.kind_of?(Fixnum) && PORT !~ v
raise InvalidComponentError,
"bad component(expected port component): #{v}"
end
return true
end