Flowdock
fu_get_gid(group) public

No documentation

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

Hide source
# File lib/fileutils.rb, line 986
    def fu_get_gid(group)   #:nodoc:
      return nil unless group
      group = group.to_s
      if /\A\d+\z/ =~ group
      then group.to_i
      else Etc.getgrnam(group).gid
      end
    end
Register or log in to add new notes.