Method: Addressable::URI#omit!

Defined in:
lib/addressable/uri.rb

#omit!(*components) ⇒ Addressable::URI

Destructive form of omit.

Parameters:

  • *components (Symbol)

    The components to be omitted.

Returns:

See Also:



2324
2325
2326
# File 'lib/addressable/uri.rb', line 2324

def omit!(*components)
  replace_self(self.omit(*components))
end