Sha256: ddc4257e992b5f78361259ae077405b3d8efc79e65126f6ee81d7c82bd78fab8

Contents?: true

Size: 375 Bytes

Versions: 8

Compression:

Stored size: 375 Bytes

Contents

module URI

  class FILE < Generic
  end

  class S3 < Generic
  end

  class FTPS < Generic
    DEFAULT_PORT = 21
  end

  class FTPES < Generic
    DEFAULT_PORT = 21
  end

  class SFTP < Generic
    DEFAULT_PORT = 22
  end

  @@schemes["FTPS"]   = FTPS
  @@schemes["FTPES"]  = FTPES
  @@schemes["SFTP"]   = SFTP
  @@schemes["S3"]     = S3
  @@schemes["FILE"]   = FILE
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rest-ftp-daemon-0.435.2 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.435.1 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.435.0 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.434.0 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.433.0 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.432.0 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.430.1 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.430.0 lib/rest-ftp-daemon/uri.rb