sys-admin 1.3.1-mswin32 → 1.4.0-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +16 -0
- data/MANIFEST +15 -14
- data/README +54 -38
- data/examples/groups.rb +39 -0
- data/examples/users.rb +53 -0
- data/install.rb +22 -0
- data/lib/sys/admin.rb +712 -403
- data/sys-admin.gemspec +38 -0
- data/test/tc_admin.rb +14 -14
- data/test/tc_unix.rb +78 -0
- data/test/tc_windows.rb +312 -0
- metadata +17 -6
metadata
CHANGED
@@ -3,15 +3,15 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: sys-admin
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.
|
7
|
-
date:
|
8
|
-
summary: A unified, cross platform replacement for the
|
6
|
+
version: 1.4.0
|
7
|
+
date: 2007-01-20 00:00:00 -07:00
|
8
|
+
summary: A unified, cross platform replacement for the "etc" package.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
11
|
email: djberg96@gmail.com
|
12
12
|
homepage: http://www.rubyforge.org/projects/sysutils
|
13
13
|
rubyforge_project: sysutils
|
14
|
-
description: A unified, cross platform replacement for the
|
14
|
+
description: A unified, cross platform replacement for the "etc" package.
|
15
15
|
autorequire:
|
16
16
|
default_executable:
|
17
17
|
bindir: bin
|
@@ -29,10 +29,21 @@ post_install_message:
|
|
29
29
|
authors:
|
30
30
|
- Daniel J. Berger
|
31
31
|
files:
|
32
|
-
-
|
32
|
+
- examples/groups.rb
|
33
|
+
- examples/users.rb
|
34
|
+
- test/tc_admin.rb
|
35
|
+
- test/tc_unix.rb
|
36
|
+
- test/tc_windows.rb
|
33
37
|
- CHANGES
|
34
|
-
-
|
38
|
+
- examples
|
39
|
+
- ext
|
40
|
+
- install.rb
|
41
|
+
- lib
|
35
42
|
- MANIFEST
|
43
|
+
- README
|
44
|
+
- sys-admin.gemspec
|
45
|
+
- test
|
46
|
+
- lib/sys/admin.rb
|
36
47
|
test_files:
|
37
48
|
- test/tc_admin.rb
|
38
49
|
rdoc_options: []
|