method

parse_mlsx_entry

ruby latest stable - Class: Net::FTP
parse_mlsx_entry(entry)
private

No documentation available.

# File lib/net/ftp.rb, line 1065
    def parse_mlsx_entry(entry)
      facts, pathname = entry.chomp.split(/ /, 2)
      unless pathname
        raise FTPProtoError, entry
      end
      return MLSxEntry.new(
        facts.scan(/(.*?)=(.*?);/).each_with_object({}) {
          |(factname, value), h|
          name = factname.downcase
          h[name] = FACT_PARSERS[name].(value)
        },
        pathname)
    end