uri.rb revision 08464a6b0d787688a7a3d60e22c7dc9a62e30b71
132N/Amodule URI
132N/A class << self
132N/A
132N/A def valid?(string)
132N/A URI.parse(string)
132N/A true
132N/A rescue URI::InvalidURIError
132N/A false
132N/A end
132N/A
132N/A end
132N/Aend
132N/A