Method: Bundler::URI::FTP#merge

Defined in:
lib/bundler/vendor/uri/lib/uri/ftp.rb

#merge(oth) ⇒ Object

:nodoc:

[View source]

214
215
216
217
218
219
220
221
# File 'lib/bundler/vendor/uri/lib/uri/ftp.rb', line 214

def merge(oth) # :nodoc:
  tmp = super(oth)
  if self != tmp
    tmp.set_typecode(oth.typecode)
  end

  return tmp
end