RAA - win32-etc

win32-etc / 0.2.5

Short description: Etc module support for Win32
Category: Library/Win32
Status: stable
Created: 2003-10-24 17:37:33 GMT
Last update: 2005-09-29 03:42:18 GMT
Owner: Daniel J. Berger (Projects of this owner)
Homepage: http://rubyforge.org/projects/win32utils/
Download: http://rubyforge.org/frs/download.php/6267/win32-etc-0.2.5.zip
License: Ruby's
Dependency:
None
Description:

A module that provides Etc functions for the Win32 platform. You can also add, delete and configure users.

Synopsis
========
require "win32/etc"
include Win32

puts "Login: " + Etc.getlogin

p Etc.getpwnam("Guest")
p Etc.getpwuid(512)
p Etc.getgrnam("Guests")
p Etc.getgrgid(500)

Etc.passwd{ |s|
p s
}

Etc.group{ |g|
p g
}

Versions: [0.2.5 (2005-09-29)] [0.2.4 (2005-03-01)] [0.2.3 (2004-08-28)] [0.2.2 (2004-03-13)]

Edit this project (for project owner)

back to RAA top