Flowdock
method

parse_mode

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: FtpFile
parse_mode(m) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rake/contrib/ftptools.rb, line 49
    def parse_mode(m)
      result = 0
      (1..9).each do |i|
        result = 2*result + ((m[i]==--) ? 0 : 1)
      end
      result
    end
Register or log in to add new notes.