Class: Cfruby::Users::GroupList

Inherits:
Hash
  • Object
show all
Defined in:
lib/libcfruby/users.rb

Overview

A holding object for a list of groups and information about them. Each group in the list is referenced by groupname in Hash notation (glist)

Instance Method Summary collapse

Instance Method Details

#to_hashObject



93
94
95
96
97
98
99
100
101
# File 'lib/libcfruby/users.rb', line 93

def to_hash()
	
	hash = Hash.new()
	self.each_key() { |key|
		hash[key] = self[key].to_hash
	}
	
	return(hash)
end