ldap_fluff 0.3.3 → 0.3.4
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.
- checksums.yaml +4 -4
- data/lib/ldap_fluff/config.rb +2 -2
- metadata +21 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28f120e9600034857038687026da6b26a453c2b2
|
|
4
|
+
data.tar.gz: 4c7793f94f748e29ee2cc0191a28c6f05ff9ff8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39b79a3b20b2285cb98d33b3d8c1e6c706d530f6ee818144e5f9b8f91295b508868750ad9d89e06af56f5f090d3e139799a5d3da8698ee05274e59e39500b2e1
|
|
7
|
+
data.tar.gz: 91727abfcb17862ae23e5b7b6133e7449a68e3eacd7d8e8fb858d9afc215b44365e509a7471242395b468577cbd7bbac84dfd3853a5566d398cddc5137f1f2d1
|
data/lib/ldap_fluff/config.rb
CHANGED
|
@@ -27,8 +27,8 @@ class LdapFluff::Config
|
|
|
27
27
|
# @param [#to_hash] config
|
|
28
28
|
def convert(config)
|
|
29
29
|
config.to_hash.with_indifferent_access.tap do |conf|
|
|
30
|
-
%w[encryption server_type].each do |key|
|
|
31
|
-
conf[key] = conf[key].to_sym if conf[key]
|
|
30
|
+
%w[encryption server_type method].each do |key|
|
|
31
|
+
conf[key] = conf[key].is_a?(Hash) ? convert(conf[key]) : conf[key].to_sym if conf[key]
|
|
32
32
|
end
|
|
33
33
|
end
|
|
34
34
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ldap_fluff
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jordan O'Mara
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date:
|
|
15
|
+
date: 2015-03-22 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: net-ldap
|
|
@@ -83,29 +83,29 @@ extra_rdoc_files:
|
|
|
83
83
|
- README.rdoc
|
|
84
84
|
- LICENSE
|
|
85
85
|
files:
|
|
86
|
-
- LICENSE
|
|
87
|
-
- README.rdoc
|
|
88
86
|
- lib/ldap_fluff.rb
|
|
89
|
-
- lib/ldap_fluff/active_directory.rb
|
|
90
|
-
- lib/ldap_fluff/ad_member_service.rb
|
|
91
|
-
- lib/ldap_fluff/config.rb
|
|
92
|
-
- lib/ldap_fluff/error.rb
|
|
93
|
-
- lib/ldap_fluff/freeipa.rb
|
|
94
|
-
- lib/ldap_fluff/freeipa_member_service.rb
|
|
95
87
|
- lib/ldap_fluff/generic.rb
|
|
96
88
|
- lib/ldap_fluff/generic_member_service.rb
|
|
89
|
+
- lib/ldap_fluff/freeipa.rb
|
|
90
|
+
- lib/ldap_fluff/freeipa_member_service.rb
|
|
91
|
+
- lib/ldap_fluff/error.rb
|
|
97
92
|
- lib/ldap_fluff/ldap_fluff.rb
|
|
98
|
-
- lib/ldap_fluff/
|
|
93
|
+
- lib/ldap_fluff/active_directory.rb
|
|
99
94
|
- lib/ldap_fluff/posix_member_service.rb
|
|
95
|
+
- lib/ldap_fluff/config.rb
|
|
96
|
+
- lib/ldap_fluff/posix.rb
|
|
97
|
+
- lib/ldap_fluff/ad_member_service.rb
|
|
100
98
|
- test/ad_member_services_test.rb
|
|
101
|
-
- test/ad_test.rb
|
|
102
99
|
- test/config_test.rb
|
|
103
|
-
- test/ipa_member_services_test.rb
|
|
104
|
-
- test/ipa_test.rb
|
|
105
100
|
- test/ldap_test.rb
|
|
106
|
-
- test/lib/ldap_test_helper.rb
|
|
107
101
|
- test/posix_member_services_test.rb
|
|
102
|
+
- test/ad_test.rb
|
|
103
|
+
- test/ipa_test.rb
|
|
104
|
+
- test/ipa_member_services_test.rb
|
|
105
|
+
- test/lib/ldap_test_helper.rb
|
|
108
106
|
- test/posix_test.rb
|
|
107
|
+
- README.rdoc
|
|
108
|
+
- LICENSE
|
|
109
109
|
homepage: https://github.com/theforeman/ldap_fluff
|
|
110
110
|
licenses:
|
|
111
111
|
- GPLv2
|
|
@@ -126,17 +126,18 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
126
|
version: '0'
|
|
127
127
|
requirements: []
|
|
128
128
|
rubyforge_project:
|
|
129
|
-
rubygems_version: 2.
|
|
129
|
+
rubygems_version: 2.0.3
|
|
130
130
|
signing_key:
|
|
131
131
|
specification_version: 4
|
|
132
132
|
summary: LDAP querying tools for Active Directory, FreeIPA and POSIX-style
|
|
133
133
|
test_files:
|
|
134
|
-
- test/
|
|
134
|
+
- test/ad_member_services_test.rb
|
|
135
|
+
- test/config_test.rb
|
|
136
|
+
- test/ldap_test.rb
|
|
135
137
|
- test/posix_member_services_test.rb
|
|
136
138
|
- test/ad_test.rb
|
|
137
139
|
- test/ipa_test.rb
|
|
138
|
-
- test/
|
|
140
|
+
- test/ipa_member_services_test.rb
|
|
139
141
|
- test/lib/ldap_test_helper.rb
|
|
140
142
|
- test/posix_test.rb
|
|
141
|
-
|
|
142
|
-
- test/config_test.rb
|
|
143
|
+
has_rdoc: true
|