Method: URI::Generic#absolute

Defined in:
lib/uri/generic.rb

#absoluteBoolean

Checks if URI is an absolute one

Returns:

  • (Boolean)


604
605
606
607
608
609
610
# File 'lib/uri/generic.rb', line 604

def absolute?
  if @scheme
    true
  else
    false
  end
end