ruby-ldap 0.9.11 → 0.9.12
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +18 -0
- data/FAQ +5 -9
- data/NOTES +29 -0
- data/README +22 -18
- data/TODO +10 -0
- data/clientauth.c +605 -0
- data/conn.c +24 -1
- data/entry.c +9 -9
- data/extconf.rb +70 -29
- data/ldap.c +67 -0
- data/lib/ldap/control.rb +3 -3
- data/lib/ldap/ldif.rb +264 -269
- data/lib/ldap/schema.rb +39 -33
- data/mod.c +7 -3
- data/rbldap.h +8 -6
- data/test/cookbooks/apt/metadata.rb +13 -0
- data/test/cookbooks/apt/providers/repository.rb +73 -0
- data/test/cookbooks/apt/recipes/cacher-client.rb +44 -0
- data/test/cookbooks/apt/recipes/cacher.rb +45 -0
- data/test/cookbooks/apt/recipes/default.rb +50 -0
- data/test/cookbooks/apt/resources/repository.rb +30 -0
- data/test/cookbooks/nginx/attributes/default.rb +35 -0
- data/test/cookbooks/nginx/definitions/nginx_site.rb +35 -0
- data/test/cookbooks/nginx/metadata.rb +86 -0
- data/test/cookbooks/nginx/recipes/default.rb +56 -0
- data/test/cookbooks/nginx/recipes/source.rb +143 -0
- data/test/cookbooks/openldap/attributes/default.rb +61 -0
- data/test/cookbooks/openldap/metadata.rb +99 -0
- data/test/cookbooks/openldap/recipes/auth.rb +70 -0
- data/test/cookbooks/openldap/recipes/client.rb +28 -0
- data/test/cookbooks/openldap/recipes/default.rb +18 -0
- data/test/cookbooks/openldap/recipes/server.rb +110 -0
- data/test/cookbooks/postgresql/attributes/default.rb +68 -0
- data/test/cookbooks/postgresql/metadata.rb +15 -0
- data/test/cookbooks/postgresql/recipes/client.rb +27 -0
- data/test/cookbooks/postgresql/recipes/default.rb +20 -0
- data/test/cookbooks/postgresql/recipes/server.rb +36 -0
- data/test/cookbooks/postgresql/recipes/server_debian.rb +51 -0
- data/test/cookbooks/postgresql/recipes/server_redhat.rb +84 -0
- data/test/cookbooks/sqlite/metadata.rb +11 -0
- data/test/cookbooks/sqlite/recipes/default.rb +26 -0
- data/test/cookbooks/vagrant_main/recipes/default.rb +12 -0
- data/test/moz_cert.rb +105 -0
- data/test/setup.rb +2 -2
- data/win/wldap32.def +257 -0
- metadata +78 -55
metadata
CHANGED
@@ -1,100 +1,123 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-ldap
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.9.12
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
|
-
authors:
|
7
|
+
authors:
|
7
8
|
- Alexey Chebotar
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
|
12
|
-
date: 2010-03-15 00:00:00 +01:00
|
13
|
-
default_executable:
|
12
|
+
date: 2011-12-27 00:00:00.000000000 Z
|
14
13
|
dependencies: []
|
14
|
+
description: ! 'It provides the interface to some LDAP libraries (e.g. OpenLDAP, Netscape
|
15
|
+
SDK and Active Directory). The common API for application development is described
|
16
|
+
in RFC1823 and is supported by Ruby/LDAP.
|
15
17
|
|
16
|
-
|
17
|
-
It provides the interface to some LDAP libraries (e.g. OpenLDAP, Netscape SDK and Active Directory). The common API for application development is described in RFC1823 and is supported by Ruby/LDAP.
|
18
|
-
|
18
|
+
'
|
19
19
|
email: alexey.chebotar@gmail.com
|
20
20
|
executables: []
|
21
|
-
|
22
|
-
extensions:
|
21
|
+
extensions:
|
23
22
|
- extconf.rb
|
24
23
|
extra_rdoc_files: []
|
25
|
-
|
26
|
-
files:
|
24
|
+
files:
|
27
25
|
- ChangeLog
|
28
26
|
- COPYING
|
29
27
|
- FAQ
|
30
28
|
- NOTES
|
31
29
|
- README
|
32
30
|
- TODO
|
33
|
-
-
|
34
|
-
- lib/ldap/ldif.rb
|
31
|
+
- extconf.rb
|
35
32
|
- lib/ldap/control.rb
|
33
|
+
- lib/ldap/ldif.rb
|
34
|
+
- lib/ldap/schema.rb
|
36
35
|
- test/add.rb
|
37
|
-
- test/misc1.rb
|
38
|
-
- test/modrdn.rb
|
39
|
-
- test/search3.rb
|
40
36
|
- test/add2.rb
|
41
|
-
- test/
|
42
|
-
- test/delete.rb
|
37
|
+
- test/add3.rb
|
43
38
|
- test/bind-ldaps.rb
|
44
|
-
- test/conf.rb
|
45
|
-
- test/tc_conn.rb
|
46
|
-
- test/search2.rb
|
47
39
|
- test/bind-sasl.rb
|
48
|
-
- test/
|
40
|
+
- test/bind-ssl.rb
|
41
|
+
- test/bind.rb
|
42
|
+
- test/compare.rb
|
43
|
+
- test/conf.rb
|
44
|
+
- test/cookbooks/apt/metadata.rb
|
45
|
+
- test/cookbooks/apt/providers/repository.rb
|
46
|
+
- test/cookbooks/apt/recipes/cacher-client.rb
|
47
|
+
- test/cookbooks/apt/recipes/cacher.rb
|
48
|
+
- test/cookbooks/apt/recipes/default.rb
|
49
|
+
- test/cookbooks/apt/resources/repository.rb
|
50
|
+
- test/cookbooks/nginx/attributes/default.rb
|
51
|
+
- test/cookbooks/nginx/definitions/nginx_site.rb
|
52
|
+
- test/cookbooks/nginx/metadata.rb
|
53
|
+
- test/cookbooks/nginx/recipes/default.rb
|
54
|
+
- test/cookbooks/nginx/recipes/source.rb
|
55
|
+
- test/cookbooks/openldap/attributes/default.rb
|
56
|
+
- test/cookbooks/openldap/metadata.rb
|
57
|
+
- test/cookbooks/openldap/recipes/auth.rb
|
58
|
+
- test/cookbooks/openldap/recipes/client.rb
|
59
|
+
- test/cookbooks/openldap/recipes/default.rb
|
60
|
+
- test/cookbooks/openldap/recipes/server.rb
|
61
|
+
- test/cookbooks/postgresql/attributes/default.rb
|
62
|
+
- test/cookbooks/postgresql/metadata.rb
|
63
|
+
- test/cookbooks/postgresql/recipes/client.rb
|
64
|
+
- test/cookbooks/postgresql/recipes/default.rb
|
65
|
+
- test/cookbooks/postgresql/recipes/server.rb
|
66
|
+
- test/cookbooks/postgresql/recipes/server_debian.rb
|
67
|
+
- test/cookbooks/postgresql/recipes/server_redhat.rb
|
68
|
+
- test/cookbooks/sqlite/metadata.rb
|
69
|
+
- test/cookbooks/sqlite/recipes/default.rb
|
70
|
+
- test/cookbooks/vagrant_main/recipes/default.rb
|
71
|
+
- test/delete.rb
|
49
72
|
- test/ext.rb
|
50
|
-
- test/
|
73
|
+
- test/misc1.rb
|
51
74
|
- test/misc2.rb
|
52
|
-
- test/
|
53
|
-
- test/
|
75
|
+
- test/modrdn.rb
|
76
|
+
- test/moz_cert.rb
|
54
77
|
- test/search.rb
|
55
|
-
- test/
|
78
|
+
- test/search2.rb
|
79
|
+
- test/search3.rb
|
80
|
+
- test/setup.rb
|
81
|
+
- test/subschema.rb
|
82
|
+
- test/tc_conn.rb
|
56
83
|
- test/tc_ldif.rb
|
57
|
-
- test/
|
58
|
-
- test/
|
59
|
-
- test/
|
60
|
-
- extconf.rb
|
84
|
+
- test/tc_schema.rb
|
85
|
+
- test/tc_search.rb
|
86
|
+
- test/ts_ldap.rb
|
61
87
|
- rbldap.h
|
62
88
|
- win/winlber.h
|
63
89
|
- win/winldap.h
|
64
|
-
-
|
65
|
-
- ldap.c
|
90
|
+
- clientauth.c
|
66
91
|
- conn.c
|
67
92
|
- entry.c
|
93
|
+
- ldap.c
|
94
|
+
- misc.c
|
68
95
|
- mod.c
|
69
96
|
- saslconn.c
|
70
|
-
-
|
71
|
-
|
97
|
+
- sslconn.c
|
98
|
+
- win/wldap32.def
|
72
99
|
homepage: http://ruby-ldap.sourceforge.net/
|
73
100
|
licenses: []
|
74
|
-
|
75
101
|
post_install_message:
|
76
102
|
rdoc_options: []
|
77
|
-
|
78
|
-
require_paths:
|
103
|
+
require_paths:
|
79
104
|
- lib
|
80
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
105
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
106
|
+
none: false
|
107
|
+
requirements:
|
108
|
+
- - ! '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
|
+
none: false
|
113
|
+
requirements:
|
114
|
+
- - ! '>='
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
92
117
|
requirements: []
|
93
|
-
|
94
118
|
rubyforge_project: ruby-ldap
|
95
|
-
rubygems_version: 1.
|
119
|
+
rubygems_version: 1.8.13
|
96
120
|
signing_key:
|
97
121
|
specification_version: 3
|
98
122
|
summary: Ruby/LDAP is an extension module for Ruby
|
99
123
|
test_files: []
|
100
|
-
|