activesambaldap 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/NEWS.en +6 -1
- data/NEWS.ja +6 -1
- data/README.en +2 -2
- data/README.ja +2 -2
- data/Rakefile +9 -1
- data/lib/active_samba_ldap/account.rb +2 -0
- data/lib/active_samba_ldap/base.rb +3 -1
- data/lib/active_samba_ldap/computer.rb +1 -1
- data/lib/active_samba_ldap/configuration_files +2 -0
- data/lib/active_samba_ldap/dc.rb +3 -1
- data/lib/active_samba_ldap/group.rb +1 -1
- data/lib/active_samba_ldap/idmap.rb +3 -1
- data/lib/active_samba_ldap/ou.rb +3 -1
- data/lib/active_samba_ldap/reloadable.rb +13 -0
- data/lib/active_samba_ldap/samba_computer.rb +1 -1
- data/lib/active_samba_ldap/samba_group.rb +1 -1
- data/lib/active_samba_ldap/samba_user.rb +1 -1
- data/lib/active_samba_ldap/unix_id_pool.rb +3 -1
- data/lib/active_samba_ldap/user.rb +1 -1
- data/lib/active_samba_ldap/version.rb +1 -1
- data/lib/active_samba_ldap.rb +5 -1
- data/setup.rb +1585 -0
- metadata +11 -8
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: activesambaldap
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
7
|
-
date:
|
6
|
+
version: 0.0.2
|
7
|
+
date: 2007-01-29 00:00:00 +09:00
|
8
8
|
summary: ActiveSambaLdap is a library and a management tool for Samba + LDAP environment.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -59,12 +59,14 @@ files:
|
|
59
59
|
- lib/active_samba_ldap/computer.rb
|
60
60
|
- lib/active_samba_ldap/computer_account.rb
|
61
61
|
- lib/active_samba_ldap/configuration.rb
|
62
|
+
- lib/active_samba_ldap/configuration_files
|
62
63
|
- lib/active_samba_ldap/dc.rb
|
63
64
|
- lib/active_samba_ldap/entry.rb
|
64
65
|
- lib/active_samba_ldap/group.rb
|
65
66
|
- lib/active_samba_ldap/idmap.rb
|
66
67
|
- lib/active_samba_ldap/ou.rb
|
67
68
|
- lib/active_samba_ldap/populate.rb
|
69
|
+
- lib/active_samba_ldap/reloadable.rb
|
68
70
|
- lib/active_samba_ldap/samba_account.rb
|
69
71
|
- lib/active_samba_ldap/samba_computer.rb
|
70
72
|
- lib/active_samba_ldap/samba_group.rb
|
@@ -91,6 +93,7 @@ files:
|
|
91
93
|
- rails/plugin/active_samba_ldap/generators/scaffold_asl/templates/unix_id_pool.rb
|
92
94
|
- rails/plugin/active_samba_ldap/generators/scaffold_asl/templates/user.rb
|
93
95
|
- rails/plugin/active_samba_ldap/init.rb
|
96
|
+
- setup.rb
|
94
97
|
- test/asl-test-utils.rb
|
95
98
|
- test/command.rb
|
96
99
|
- test/config.yaml.sample
|
@@ -121,13 +124,13 @@ test_files:
|
|
121
124
|
- test/test_asl_populate.rb
|
122
125
|
- test/test_asl_groupmod.rb
|
123
126
|
- test/test_asl_groupshow.rb
|
124
|
-
- test/
|
127
|
+
- test/test_password.rb
|
125
128
|
- test/test_asl_passwd.rb
|
126
129
|
- test/test_asl_userdel.rb
|
127
130
|
- test/test_asl_groupadd.rb
|
128
131
|
- test/test_asl_usermod.rb
|
132
|
+
- test/test_asl_purge.rb
|
129
133
|
- test/test_group.rb
|
130
|
-
- test/test_password.rb
|
131
134
|
- test/test_user_home_directory.rb
|
132
135
|
rdoc_options: []
|
133
136
|
|
@@ -158,20 +161,20 @@ requirements: []
|
|
158
161
|
|
159
162
|
dependencies:
|
160
163
|
- !ruby/object:Gem::Dependency
|
161
|
-
name:
|
164
|
+
name: activeldap
|
162
165
|
version_requirement:
|
163
166
|
version_requirements: !ruby/object:Gem::Version::Requirement
|
164
167
|
requirements:
|
165
168
|
- - ">="
|
166
169
|
- !ruby/object:Gem::Version
|
167
|
-
version:
|
170
|
+
version: 0.8.0
|
168
171
|
version:
|
169
172
|
- !ruby/object:Gem::Dependency
|
170
|
-
name:
|
173
|
+
name: hoe
|
171
174
|
version_requirement:
|
172
175
|
version_requirements: !ruby/object:Gem::Version::Requirement
|
173
176
|
requirements:
|
174
177
|
- - ">="
|
175
178
|
- !ruby/object:Gem::Version
|
176
|
-
version:
|
179
|
+
version: 1.1.7
|
177
180
|
version:
|