ruby-ldap 0.9.11 → 0.9.12

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.
Files changed (46) hide show
  1. data/ChangeLog +18 -0
  2. data/FAQ +5 -9
  3. data/NOTES +29 -0
  4. data/README +22 -18
  5. data/TODO +10 -0
  6. data/clientauth.c +605 -0
  7. data/conn.c +24 -1
  8. data/entry.c +9 -9
  9. data/extconf.rb +70 -29
  10. data/ldap.c +67 -0
  11. data/lib/ldap/control.rb +3 -3
  12. data/lib/ldap/ldif.rb +264 -269
  13. data/lib/ldap/schema.rb +39 -33
  14. data/mod.c +7 -3
  15. data/rbldap.h +8 -6
  16. data/test/cookbooks/apt/metadata.rb +13 -0
  17. data/test/cookbooks/apt/providers/repository.rb +73 -0
  18. data/test/cookbooks/apt/recipes/cacher-client.rb +44 -0
  19. data/test/cookbooks/apt/recipes/cacher.rb +45 -0
  20. data/test/cookbooks/apt/recipes/default.rb +50 -0
  21. data/test/cookbooks/apt/resources/repository.rb +30 -0
  22. data/test/cookbooks/nginx/attributes/default.rb +35 -0
  23. data/test/cookbooks/nginx/definitions/nginx_site.rb +35 -0
  24. data/test/cookbooks/nginx/metadata.rb +86 -0
  25. data/test/cookbooks/nginx/recipes/default.rb +56 -0
  26. data/test/cookbooks/nginx/recipes/source.rb +143 -0
  27. data/test/cookbooks/openldap/attributes/default.rb +61 -0
  28. data/test/cookbooks/openldap/metadata.rb +99 -0
  29. data/test/cookbooks/openldap/recipes/auth.rb +70 -0
  30. data/test/cookbooks/openldap/recipes/client.rb +28 -0
  31. data/test/cookbooks/openldap/recipes/default.rb +18 -0
  32. data/test/cookbooks/openldap/recipes/server.rb +110 -0
  33. data/test/cookbooks/postgresql/attributes/default.rb +68 -0
  34. data/test/cookbooks/postgresql/metadata.rb +15 -0
  35. data/test/cookbooks/postgresql/recipes/client.rb +27 -0
  36. data/test/cookbooks/postgresql/recipes/default.rb +20 -0
  37. data/test/cookbooks/postgresql/recipes/server.rb +36 -0
  38. data/test/cookbooks/postgresql/recipes/server_debian.rb +51 -0
  39. data/test/cookbooks/postgresql/recipes/server_redhat.rb +84 -0
  40. data/test/cookbooks/sqlite/metadata.rb +11 -0
  41. data/test/cookbooks/sqlite/recipes/default.rb +26 -0
  42. data/test/cookbooks/vagrant_main/recipes/default.rb +12 -0
  43. data/test/moz_cert.rb +105 -0
  44. data/test/setup.rb +2 -2
  45. data/win/wldap32.def +257 -0
  46. 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.11
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
- description: |
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
- - lib/ldap/schema.rb
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/ts_ldap.rb
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/tc_schema.rb
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/setup.rb
73
+ - test/misc1.rb
51
74
  - test/misc2.rb
52
- - test/bind.rb
53
- - test/subschema.rb
75
+ - test/modrdn.rb
76
+ - test/moz_cert.rb
54
77
  - test/search.rb
55
- - test/tc_search.rb
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/compare.rb
58
- - test/add3.rb
59
- - test/bind-ssl.rb
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
- - sslconn.c
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
- - misc.c
71
- has_rdoc: true
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
- requirements:
82
- - - ">="
83
- - !ruby/object:Gem::Version
84
- version: "0"
85
- version:
86
- required_rubygems_version: !ruby/object:Gem::Requirement
87
- requirements:
88
- - - ">="
89
- - !ruby/object:Gem::Version
90
- version: "0"
91
- version:
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.3.5
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
-