Sha256: fc20c158db13b65a4ade44c32113f67b240c712d9bc8f7d0921f541ae9ffbe57

Contents?: true

Size: 365 Bytes

Versions: 7

Compression:

Stored size: 365 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

7 entries across 7 versions & 1 rubygems

Version Path
rest-ftp-daemon-0.424.3 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.424.2 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.424.0 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.423.3 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.423.2 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.423.1 lib/rest-ftp-daemon/uri.rb
rest-ftp-daemon-0.423.0 lib/rest-ftp-daemon/uri.rb