ruby-ldap 0.9.15 → 0.9.16

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 (7) hide show
  1. checksums.yaml +8 -8
  2. data/ChangeLog +5 -0
  3. data/NOTES +7 -0
  4. data/README +1 -0
  5. data/lib/ldap/ldif.rb +1 -1
  6. data/rbldap.h +2 -2
  7. metadata +2 -2
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YzU4MmZlYzY1MzczZTY0NTMwMDFmMTg4MDc3OGE1Yjg5ZjBjZTMxNQ==
4
+ NzNiOGQzOTM3YzRjZjkxNWQyNjA4MThiMjY0NmM3NzUzM2E1YTYyZg==
5
5
  data.tar.gz: !binary |-
6
- NDM5NGM1YmE4ZjdlZjJhM2M2N2E3ZjI1NmQ5NWIyNjI2MzFkMWVmOQ==
6
+ NWNhZjFlM2I4ZWU0ZDMzOGJjZmQxOTY0ZDg4Y2NiYTQyMWMwNTZmMw==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- OTIwZjE3NmUxMzJjYTA5OTMxYjZkNThiZTMzNmNhY2ZiMDc3MGJiMmRlNTcy
10
- YzhiZmE0ODAwNDg4YmRhOWNlZDA1NjhkZDA0NzNmMGQyNTI0YmYzY2EzNzg4
11
- MDU5ZTFlYmFmYWZlNDAyODE0ZmE2ZWU2NmUyMTc1YzdmYzVhY2M=
9
+ Njg3ZDQ0MzkzNWJiNTM0ZTZiYmE1NzkwZDEzZTgzMDg5YWZmNTI1ZTVmOGU1
10
+ Mjk1M2FhMjc1MmMzYzk5YjRiNWM3MGU1YzdkOWM1YzVmNTg1MGY3N2ExYTgy
11
+ MzFlMTQwZTY3MzgyMWQzMzdlMjFkOGYwYTNjN2M3ZjYzYTE0ODE=
12
12
  data.tar.gz: !binary |-
13
- ZGE4MDcwNzVkYTM0MGUzZGI5ZmJlOWJmZjczMjM4ZWQxYzY5MWY5ZmRmNWE1
14
- ZDEzYzJjNGE3MGM0NDkxMzNjYjA4MTIxOTRkYjYwZTU4NjkxMDgwYTI2ZWYw
15
- YjE5MjM5OTY1N2IzMjA1MzJkN2E0OTdmZWViYThkZjE3YjRmNTA=
13
+ MTJlYjc0MzhjMjU3NWIwMTU2NTM3MzYyMjk5ZGM0YTMzNGExMGM1OTM2ODQ0
14
+ ZmZhM2NjNmE4ZjNiM2FiNDI2YzllZDU0OWRkNjJhZDgxNDQyNDcwYjljNjNk
15
+ N2VjNWY5NDg0ZjcwYTQ0YTQwNmJiYzlhNWZmOTc0ZWYzMzI2MzY=
data/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ Fri Sep 6 07:04:07 UTC 2013 Alexey Chebotar <alexey.chebotar@gmail.com>
2
+ * Version 0.9.16
3
+ * Fixed undefined method 'each' in LDAP::LDIF.mods_to_ldif (GH-26).
4
+ Thanks to Francesco Malvezzi.
5
+
1
6
  Thu Aug 29 10:18:48 UTC 2013 Alexey Chebotar <alexey.chebotar@gmail.com>
2
7
  * Version 0.9.15
3
8
  * Accept nil for new_parent_dn for rename. Thanks to Kouhei Sutou.
data/NOTES CHANGED
@@ -1,3 +1,10 @@
1
+ 0.9.16
2
+ -----
3
+
4
+ * Fixed undefined method 'each' in LDAP::LDIF.mods_to_ldif (GH-26).
5
+ Thanks to Francesco Malvezzi.
6
+
7
+
1
8
  0.9.15
2
9
  -----
3
10
 
data/README CHANGED
@@ -253,6 +253,7 @@ This list maybe not correct. If you notice mistakes of this list, please point o
253
253
  * Brian Leake
254
254
  * Chris Scharf
255
255
  * David Campbell
256
+ * Francesco Malvezzi
256
257
  * Hadmut Danisch
257
258
  * Hiroki Najima
258
259
  * Jan Mikkelsen
@@ -505,7 +505,7 @@ module LDAP
505
505
  end
506
506
 
507
507
  ldif << "-\n" if plural
508
- ldif << LDIF.to_ldif( change_type, mod.mod_type )
508
+ ldif << LDIF.to_ldif( change_type, [mod.mod_type] )
509
509
  ldif << LDIF.to_ldif( mod.mod_type, mod.mod_vals )
510
510
 
511
511
  plural = true
data/rbldap.h CHANGED
@@ -27,8 +27,8 @@
27
27
 
28
28
  #define RB_LDAP_MAJOR_VERSION 0
29
29
  #define RB_LDAP_MINOR_VERSION 9
30
- #define RB_LDAP_PATCH_VERSION 15
31
- #define RB_LDAP_VERSION "0.9.15"
30
+ #define RB_LDAP_PATCH_VERSION 16
31
+ #define RB_LDAP_VERSION "0.9.16"
32
32
 
33
33
  #define LDAP_GET_OPT_MAX_BUFFER_SIZE (1024) /* >= sizeof(LDAPAPIInfo) */
34
34
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-ldap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.15
4
+ version: 0.9.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexey Chebotar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-29 00:00:00.000000000 Z
11
+ date: 2013-09-06 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: ! 'It provides the interface to some LDAP libraries (e.g. OpenLDAP, Netscape
14
14
  SDK and Active Directory). The common API for application development is described