Class: Cfruby::Users::UserList

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

Overview

A holding object for a list of users and information about them. Each user in the list is referenced by username in Hash notation (ulist)

Instance Method Summary collapse

Instance Method Details

#to_hashObject



48
49
50
51
52
53
54
55
56
# File 'lib/libcfruby/users.rb', line 48

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