devise_ldap_authenticatable 0.6.1 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +7 -0
- data/Gemfile +1 -4
- data/README.md +45 -92
- data/Rakefile +8 -7
- data/devise_ldap_authenticatable.gemspec +15 -3
- data/lib/devise_ldap_authenticatable/ldap_adapter.rb +51 -27
- data/lib/devise_ldap_authenticatable/model.rb +5 -1
- data/lib/devise_ldap_authenticatable/strategy.rb +3 -1
- data/lib/devise_ldap_authenticatable/version.rb +1 -1
- data/lib/generators/devise_ldap_authenticatable/templates/ldap.yml +3 -3
- data/spec/ldap/.gitignore +2 -0
- data/{test → spec}/ldap/base.ldif +0 -0
- data/{test → spec}/ldap/clear.ldif +0 -0
- data/{test → spec}/ldap/local.schema +0 -0
- data/spec/ldap/openldap-data/.gitignore +2 -0
- data/spec/ldap/openldap-data/run/.gitignore +2 -0
- data/{test → spec}/ldap/openldap-data/run/.gitkeep +0 -0
- data/spec/ldap/run-server +31 -0
- data/{test → spec}/ldap/server.pem +0 -0
- data/{test/ldap/slapd-test.conf → spec/ldap/slapd-test.conf.erb} +16 -16
- data/{test → spec}/rails_app/Rakefile +0 -0
- data/spec/rails_app/app/controllers/application_controller.rb +7 -0
- data/{test → spec}/rails_app/app/controllers/posts_controller.rb +0 -0
- data/{test → spec}/rails_app/app/helpers/application_helper.rb +0 -0
- data/{test → spec}/rails_app/app/helpers/posts_helper.rb +0 -0
- data/{test → spec}/rails_app/app/models/post.rb +0 -0
- data/{test → spec}/rails_app/app/models/user.rb +0 -0
- data/{test → spec}/rails_app/app/views/layouts/application.html.erb +0 -0
- data/{test → spec}/rails_app/app/views/posts/index.html.erb +0 -0
- data/{test → spec}/rails_app/config.ru +0 -0
- data/{test → spec}/rails_app/config/application.rb +0 -0
- data/{test → spec}/rails_app/config/boot.rb +1 -1
- data/{test → spec}/rails_app/config/cucumber.yml +0 -0
- data/{test → spec}/rails_app/config/database.yml +0 -0
- data/{test → spec}/rails_app/config/environment.rb +0 -0
- data/{test → spec}/rails_app/config/environments/development.rb +0 -1
- data/{test → spec}/rails_app/config/environments/production.rb +0 -0
- data/{test → spec}/rails_app/config/environments/test.rb +1 -1
- data/{test → spec}/rails_app/config/initializers/backtrace_silencers.rb +0 -0
- data/spec/rails_app/config/initializers/devise.rb +242 -0
- data/{test → spec}/rails_app/config/initializers/inflections.rb +0 -0
- data/{test → spec}/rails_app/config/initializers/mime_types.rb +0 -0
- data/{test → spec}/rails_app/config/initializers/secret_token.rb +0 -0
- data/{test → spec}/rails_app/config/initializers/session_store.rb +0 -0
- data/{test → spec}/rails_app/config/ldap.yml +0 -0
- data/{test → spec}/rails_app/config/ldap_with_boolean_ssl.yml +0 -0
- data/{test → spec}/rails_app/config/ldap_with_erb.yml +0 -0
- data/{test → spec}/rails_app/config/ldap_with_uid.yml +0 -0
- data/spec/rails_app/config/locales/devise.en.yml +58 -0
- data/{test → spec}/rails_app/config/locales/en.yml +0 -0
- data/{test → spec}/rails_app/config/routes.rb +0 -0
- data/{test → spec}/rails_app/config/ssl_ldap.yml +0 -0
- data/{test → spec}/rails_app/config/ssl_ldap_with_erb.yml +0 -0
- data/{test → spec}/rails_app/config/ssl_ldap_with_uid.yml +0 -0
- data/{test → spec}/rails_app/db/migrate/20100708120448_devise_create_users.rb +18 -4
- data/{test → spec}/rails_app/db/schema.rb +6 -13
- data/{test → spec}/rails_app/features/manage_logins.feature +0 -0
- data/{test → spec}/rails_app/features/step_definitions/login_steps.rb +0 -0
- data/{test → spec}/rails_app/features/step_definitions/web_steps.rb +0 -0
- data/{test → spec}/rails_app/features/support/env.rb +0 -0
- data/{test → spec}/rails_app/features/support/paths.rb +0 -0
- data/{test → spec}/rails_app/lib/tasks/.gitkeep +0 -0
- data/{test → spec}/rails_app/lib/tasks/cucumber.rake +0 -0
- data/{test → spec}/rails_app/public/404.html +0 -0
- data/{test → spec}/rails_app/public/422.html +0 -0
- data/{test → spec}/rails_app/public/500.html +0 -0
- data/{test → spec}/rails_app/public/images/rails.png +0 -0
- data/{test → spec}/rails_app/public/javascripts/application.js +0 -0
- data/{test → spec}/rails_app/public/javascripts/controls.js +0 -0
- data/{test → spec}/rails_app/public/javascripts/dragdrop.js +0 -0
- data/{test → spec}/rails_app/public/javascripts/effects.js +0 -0
- data/{test → spec}/rails_app/public/javascripts/prototype.js +0 -0
- data/{test → spec}/rails_app/public/javascripts/rails.js +0 -0
- data/{test → spec}/rails_app/public/stylesheets/.gitkeep +0 -0
- data/{test → spec}/rails_app/script/cucumber +0 -0
- data/{test → spec}/rails_app/script/rails +0 -0
- data/spec/spec_helper.rb +47 -0
- data/spec/support/factories.rb +16 -0
- data/spec/unit/user_spec.rb +303 -0
- metadata +292 -179
- data/Gemfile.lock +0 -92
- data/rails/init.rb +0 -2
- data/test/devise_ldap_authenticatable_test.rb +0 -8
- data/test/ldap/run-server.sh +0 -10
- data/test/ldap/slapd-ssl-test.conf +0 -107
- data/test/rails_app/Gemfile +0 -22
- data/test/rails_app/Gemfile.lock +0 -159
- data/test/rails_app/app/controllers/application_controller.rb +0 -4
- data/test/rails_app/config/initializers/devise.rb +0 -140
- data/test/rails_app/config/ldap_with_check_membership_off.yml +0 -23
- data/test/rails_app/config/ldap_with_check_membership_on.yml +0 -23
- data/test/rails_app/config/locales/devise.en.yml +0 -39
- data/test/rails_app/db/migrate/20100708120302_create_posts.rb +0 -14
- data/test/rails_app/db/seeds.rb +0 -7
- data/test/rails_app/test/factories/users.rb +0 -14
- data/test/rails_app/test/functional/posts_controller_test.rb +0 -58
- data/test/rails_app/test/performance/browsing_test.rb +0 -9
- data/test/rails_app/test/test_helper.rb +0 -36
- data/test/rails_app/test/unit/helpers/posts_helper_test.rb +0 -4
- data/test/rails_app/test/unit/post_test.rb +0 -4
- data/test/rails_app/test/unit/user_test.rb +0 -314
- data/test/test_helper.rb +0 -3
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise_ldap_authenticatable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.7.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Curtis Schiewek
|
@@ -11,40 +10,176 @@ authors:
|
|
11
10
|
autorequire:
|
12
11
|
bindir: bin
|
13
12
|
cert_chain: []
|
14
|
-
date:
|
13
|
+
date: 2013-06-20 00:00:00.000000000 Z
|
15
14
|
dependencies:
|
16
15
|
- !ruby/object:Gem::Dependency
|
17
16
|
name: devise
|
18
17
|
requirement: !ruby/object:Gem::Requirement
|
19
|
-
none: false
|
20
18
|
requirements:
|
21
|
-
- -
|
19
|
+
- - ~>
|
22
20
|
- !ruby/object:Gem::Version
|
23
|
-
version: 2.0
|
21
|
+
version: '2.0'
|
24
22
|
type: :runtime
|
25
23
|
prerelease: false
|
26
24
|
version_requirements: !ruby/object:Gem::Requirement
|
27
|
-
none: false
|
28
25
|
requirements:
|
29
|
-
- -
|
26
|
+
- - ~>
|
30
27
|
- !ruby/object:Gem::Version
|
31
|
-
version: 2.0
|
28
|
+
version: '2.0'
|
32
29
|
- !ruby/object:Gem::Dependency
|
33
30
|
name: net-ldap
|
34
31
|
requirement: !ruby/object:Gem::Requirement
|
35
|
-
none: false
|
36
32
|
requirements:
|
37
33
|
- - ~>
|
38
34
|
- !ruby/object:Gem::Version
|
39
|
-
version: 0.
|
35
|
+
version: 0.3.1
|
40
36
|
type: :runtime
|
41
37
|
prerelease: false
|
42
38
|
version_requirements: !ruby/object:Gem::Requirement
|
43
|
-
none: false
|
44
39
|
requirements:
|
45
40
|
- - ~>
|
46
41
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.
|
42
|
+
version: 0.3.1
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: rake
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - '>='
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0.9'
|
50
|
+
type: :development
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0.9'
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: rdoc
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - '>='
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '3'
|
64
|
+
type: :development
|
65
|
+
prerelease: false
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - '>='
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '3'
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: rails
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '3.2'
|
78
|
+
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '3.2'
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: sqlite3
|
87
|
+
requirement: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - '>='
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
type: :development
|
93
|
+
prerelease: false
|
94
|
+
version_requirements: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
- !ruby/object:Gem::Dependency
|
100
|
+
name: factory_girl_rails
|
101
|
+
requirement: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ~>
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '1.0'
|
106
|
+
type: :development
|
107
|
+
prerelease: false
|
108
|
+
version_requirements: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ~>
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '1.0'
|
113
|
+
- !ruby/object:Gem::Dependency
|
114
|
+
name: factory_girl
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ~>
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '2.0'
|
120
|
+
type: :development
|
121
|
+
prerelease: false
|
122
|
+
version_requirements: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - ~>
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '2.0'
|
127
|
+
- !ruby/object:Gem::Dependency
|
128
|
+
name: rspec-rails
|
129
|
+
requirement: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - '>='
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0'
|
134
|
+
type: :development
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - '>='
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
- !ruby/object:Gem::Dependency
|
142
|
+
name: database_cleaner
|
143
|
+
requirement: !ruby/object:Gem::Requirement
|
144
|
+
requirements:
|
145
|
+
- - '>='
|
146
|
+
- !ruby/object:Gem::Version
|
147
|
+
version: '0'
|
148
|
+
type: :development
|
149
|
+
prerelease: false
|
150
|
+
version_requirements: !ruby/object:Gem::Requirement
|
151
|
+
requirements:
|
152
|
+
- - '>='
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: '0'
|
155
|
+
- !ruby/object:Gem::Dependency
|
156
|
+
name: capybara
|
157
|
+
requirement: !ruby/object:Gem::Requirement
|
158
|
+
requirements:
|
159
|
+
- - '>='
|
160
|
+
- !ruby/object:Gem::Version
|
161
|
+
version: '0'
|
162
|
+
type: :development
|
163
|
+
prerelease: false
|
164
|
+
version_requirements: !ruby/object:Gem::Requirement
|
165
|
+
requirements:
|
166
|
+
- - '>='
|
167
|
+
- !ruby/object:Gem::Version
|
168
|
+
version: '0'
|
169
|
+
- !ruby/object:Gem::Dependency
|
170
|
+
name: launchy
|
171
|
+
requirement: !ruby/object:Gem::Requirement
|
172
|
+
requirements:
|
173
|
+
- - '>='
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: '0'
|
176
|
+
type: :development
|
177
|
+
prerelease: false
|
178
|
+
version_requirements: !ruby/object:Gem::Requirement
|
179
|
+
requirements:
|
180
|
+
- - '>='
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: '0'
|
48
183
|
description: Devise extension to allow authentication via LDAP
|
49
184
|
email: curtis.schiewek@gmail.com
|
50
185
|
executables: []
|
@@ -52,8 +187,8 @@ extensions: []
|
|
52
187
|
extra_rdoc_files: []
|
53
188
|
files:
|
54
189
|
- .gitignore
|
190
|
+
- CHANGELOG.md
|
55
191
|
- Gemfile
|
56
|
-
- Gemfile.lock
|
57
192
|
- MIT-LICENSE
|
58
193
|
- README.md
|
59
194
|
- Rakefile
|
@@ -69,187 +204,165 @@ files:
|
|
69
204
|
- lib/devise_ldap_authenticatable/version.rb
|
70
205
|
- lib/generators/devise_ldap_authenticatable/install_generator.rb
|
71
206
|
- lib/generators/devise_ldap_authenticatable/templates/ldap.yml
|
72
|
-
-
|
73
|
-
-
|
74
|
-
-
|
75
|
-
-
|
76
|
-
-
|
77
|
-
-
|
78
|
-
-
|
79
|
-
-
|
80
|
-
-
|
81
|
-
-
|
82
|
-
-
|
83
|
-
-
|
84
|
-
-
|
85
|
-
-
|
86
|
-
-
|
87
|
-
-
|
88
|
-
-
|
89
|
-
-
|
90
|
-
-
|
91
|
-
-
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
95
|
-
-
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
-
|
102
|
-
-
|
103
|
-
-
|
104
|
-
-
|
105
|
-
-
|
106
|
-
-
|
107
|
-
-
|
108
|
-
-
|
109
|
-
-
|
110
|
-
-
|
111
|
-
-
|
112
|
-
-
|
113
|
-
-
|
114
|
-
-
|
115
|
-
-
|
116
|
-
-
|
117
|
-
-
|
118
|
-
-
|
119
|
-
-
|
120
|
-
-
|
121
|
-
-
|
122
|
-
-
|
123
|
-
-
|
124
|
-
-
|
125
|
-
-
|
126
|
-
-
|
127
|
-
-
|
128
|
-
-
|
129
|
-
-
|
130
|
-
-
|
131
|
-
-
|
132
|
-
-
|
133
|
-
-
|
134
|
-
-
|
135
|
-
-
|
136
|
-
-
|
137
|
-
-
|
138
|
-
-
|
139
|
-
-
|
140
|
-
-
|
141
|
-
- test/rails_app/public/stylesheets/.gitkeep
|
142
|
-
- test/rails_app/script/cucumber
|
143
|
-
- test/rails_app/script/rails
|
144
|
-
- test/rails_app/test/factories/users.rb
|
145
|
-
- test/rails_app/test/functional/posts_controller_test.rb
|
146
|
-
- test/rails_app/test/performance/browsing_test.rb
|
147
|
-
- test/rails_app/test/test_helper.rb
|
148
|
-
- test/rails_app/test/unit/helpers/posts_helper_test.rb
|
149
|
-
- test/rails_app/test/unit/post_test.rb
|
150
|
-
- test/rails_app/test/unit/user_test.rb
|
151
|
-
- test/test_helper.rb
|
207
|
+
- spec/ldap/.gitignore
|
208
|
+
- spec/ldap/base.ldif
|
209
|
+
- spec/ldap/clear.ldif
|
210
|
+
- spec/ldap/local.schema
|
211
|
+
- spec/ldap/openldap-data/.gitignore
|
212
|
+
- spec/ldap/openldap-data/run/.gitignore
|
213
|
+
- spec/ldap/openldap-data/run/.gitkeep
|
214
|
+
- spec/ldap/run-server
|
215
|
+
- spec/ldap/server.pem
|
216
|
+
- spec/ldap/slapd-test.conf.erb
|
217
|
+
- spec/rails_app/Rakefile
|
218
|
+
- spec/rails_app/app/controllers/application_controller.rb
|
219
|
+
- spec/rails_app/app/controllers/posts_controller.rb
|
220
|
+
- spec/rails_app/app/helpers/application_helper.rb
|
221
|
+
- spec/rails_app/app/helpers/posts_helper.rb
|
222
|
+
- spec/rails_app/app/models/post.rb
|
223
|
+
- spec/rails_app/app/models/user.rb
|
224
|
+
- spec/rails_app/app/views/layouts/application.html.erb
|
225
|
+
- spec/rails_app/app/views/posts/index.html.erb
|
226
|
+
- spec/rails_app/config.ru
|
227
|
+
- spec/rails_app/config/application.rb
|
228
|
+
- spec/rails_app/config/boot.rb
|
229
|
+
- spec/rails_app/config/cucumber.yml
|
230
|
+
- spec/rails_app/config/database.yml
|
231
|
+
- spec/rails_app/config/environment.rb
|
232
|
+
- spec/rails_app/config/environments/development.rb
|
233
|
+
- spec/rails_app/config/environments/production.rb
|
234
|
+
- spec/rails_app/config/environments/test.rb
|
235
|
+
- spec/rails_app/config/initializers/backtrace_silencers.rb
|
236
|
+
- spec/rails_app/config/initializers/devise.rb
|
237
|
+
- spec/rails_app/config/initializers/inflections.rb
|
238
|
+
- spec/rails_app/config/initializers/mime_types.rb
|
239
|
+
- spec/rails_app/config/initializers/secret_token.rb
|
240
|
+
- spec/rails_app/config/initializers/session_store.rb
|
241
|
+
- spec/rails_app/config/ldap.yml
|
242
|
+
- spec/rails_app/config/ldap_with_boolean_ssl.yml
|
243
|
+
- spec/rails_app/config/ldap_with_erb.yml
|
244
|
+
- spec/rails_app/config/ldap_with_uid.yml
|
245
|
+
- spec/rails_app/config/locales/devise.en.yml
|
246
|
+
- spec/rails_app/config/locales/en.yml
|
247
|
+
- spec/rails_app/config/routes.rb
|
248
|
+
- spec/rails_app/config/ssl_ldap.yml
|
249
|
+
- spec/rails_app/config/ssl_ldap_with_erb.yml
|
250
|
+
- spec/rails_app/config/ssl_ldap_with_uid.yml
|
251
|
+
- spec/rails_app/db/migrate/20100708120448_devise_create_users.rb
|
252
|
+
- spec/rails_app/db/schema.rb
|
253
|
+
- spec/rails_app/features/manage_logins.feature
|
254
|
+
- spec/rails_app/features/step_definitions/login_steps.rb
|
255
|
+
- spec/rails_app/features/step_definitions/web_steps.rb
|
256
|
+
- spec/rails_app/features/support/env.rb
|
257
|
+
- spec/rails_app/features/support/paths.rb
|
258
|
+
- spec/rails_app/lib/tasks/.gitkeep
|
259
|
+
- spec/rails_app/lib/tasks/cucumber.rake
|
260
|
+
- spec/rails_app/public/404.html
|
261
|
+
- spec/rails_app/public/422.html
|
262
|
+
- spec/rails_app/public/500.html
|
263
|
+
- spec/rails_app/public/images/rails.png
|
264
|
+
- spec/rails_app/public/javascripts/application.js
|
265
|
+
- spec/rails_app/public/javascripts/controls.js
|
266
|
+
- spec/rails_app/public/javascripts/dragdrop.js
|
267
|
+
- spec/rails_app/public/javascripts/effects.js
|
268
|
+
- spec/rails_app/public/javascripts/prototype.js
|
269
|
+
- spec/rails_app/public/javascripts/rails.js
|
270
|
+
- spec/rails_app/public/stylesheets/.gitkeep
|
271
|
+
- spec/rails_app/script/cucumber
|
272
|
+
- spec/rails_app/script/rails
|
273
|
+
- spec/spec_helper.rb
|
274
|
+
- spec/support/factories.rb
|
275
|
+
- spec/unit/user_spec.rb
|
152
276
|
homepage: https://github.com/cschiewek/devise_ldap_authenticatable
|
153
277
|
licenses: []
|
278
|
+
metadata: {}
|
154
279
|
post_install_message:
|
155
280
|
rdoc_options: []
|
156
281
|
require_paths:
|
157
282
|
- lib
|
158
283
|
required_ruby_version: !ruby/object:Gem::Requirement
|
159
|
-
none: false
|
160
284
|
requirements:
|
161
|
-
- -
|
285
|
+
- - '>='
|
162
286
|
- !ruby/object:Gem::Version
|
163
287
|
version: '0'
|
164
288
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
165
|
-
none: false
|
166
289
|
requirements:
|
167
|
-
- -
|
290
|
+
- - '>='
|
168
291
|
- !ruby/object:Gem::Version
|
169
292
|
version: '0'
|
170
293
|
requirements: []
|
171
294
|
rubyforge_project:
|
172
|
-
rubygems_version:
|
295
|
+
rubygems_version: 2.0.0
|
173
296
|
signing_key:
|
174
|
-
specification_version:
|
297
|
+
specification_version: 4
|
175
298
|
summary: Devise extension to allow authentication via LDAP
|
176
299
|
test_files:
|
177
|
-
-
|
178
|
-
-
|
179
|
-
-
|
180
|
-
-
|
181
|
-
-
|
182
|
-
-
|
183
|
-
-
|
184
|
-
-
|
185
|
-
-
|
186
|
-
-
|
187
|
-
-
|
188
|
-
-
|
189
|
-
-
|
190
|
-
-
|
191
|
-
-
|
192
|
-
-
|
193
|
-
-
|
194
|
-
-
|
195
|
-
-
|
196
|
-
-
|
197
|
-
-
|
198
|
-
-
|
199
|
-
-
|
200
|
-
-
|
201
|
-
-
|
202
|
-
-
|
203
|
-
-
|
204
|
-
-
|
205
|
-
-
|
206
|
-
-
|
207
|
-
-
|
208
|
-
-
|
209
|
-
-
|
210
|
-
-
|
211
|
-
-
|
212
|
-
-
|
213
|
-
-
|
214
|
-
-
|
215
|
-
-
|
216
|
-
-
|
217
|
-
-
|
218
|
-
-
|
219
|
-
-
|
220
|
-
-
|
221
|
-
-
|
222
|
-
-
|
223
|
-
-
|
224
|
-
-
|
225
|
-
-
|
226
|
-
-
|
227
|
-
-
|
228
|
-
-
|
229
|
-
-
|
230
|
-
-
|
231
|
-
-
|
232
|
-
-
|
233
|
-
-
|
234
|
-
-
|
235
|
-
-
|
236
|
-
-
|
237
|
-
-
|
238
|
-
-
|
239
|
-
-
|
240
|
-
-
|
241
|
-
-
|
242
|
-
-
|
243
|
-
-
|
244
|
-
-
|
245
|
-
-
|
246
|
-
- test/rails_app/script/cucumber
|
247
|
-
- test/rails_app/script/rails
|
248
|
-
- test/rails_app/test/factories/users.rb
|
249
|
-
- test/rails_app/test/functional/posts_controller_test.rb
|
250
|
-
- test/rails_app/test/performance/browsing_test.rb
|
251
|
-
- test/rails_app/test/test_helper.rb
|
252
|
-
- test/rails_app/test/unit/helpers/posts_helper_test.rb
|
253
|
-
- test/rails_app/test/unit/post_test.rb
|
254
|
-
- test/rails_app/test/unit/user_test.rb
|
255
|
-
- test/test_helper.rb
|
300
|
+
- spec/ldap/.gitignore
|
301
|
+
- spec/ldap/base.ldif
|
302
|
+
- spec/ldap/clear.ldif
|
303
|
+
- spec/ldap/local.schema
|
304
|
+
- spec/ldap/openldap-data/.gitignore
|
305
|
+
- spec/ldap/openldap-data/run/.gitignore
|
306
|
+
- spec/ldap/openldap-data/run/.gitkeep
|
307
|
+
- spec/ldap/run-server
|
308
|
+
- spec/ldap/server.pem
|
309
|
+
- spec/ldap/slapd-test.conf.erb
|
310
|
+
- spec/rails_app/Rakefile
|
311
|
+
- spec/rails_app/app/controllers/application_controller.rb
|
312
|
+
- spec/rails_app/app/controllers/posts_controller.rb
|
313
|
+
- spec/rails_app/app/helpers/application_helper.rb
|
314
|
+
- spec/rails_app/app/helpers/posts_helper.rb
|
315
|
+
- spec/rails_app/app/models/post.rb
|
316
|
+
- spec/rails_app/app/models/user.rb
|
317
|
+
- spec/rails_app/app/views/layouts/application.html.erb
|
318
|
+
- spec/rails_app/app/views/posts/index.html.erb
|
319
|
+
- spec/rails_app/config.ru
|
320
|
+
- spec/rails_app/config/application.rb
|
321
|
+
- spec/rails_app/config/boot.rb
|
322
|
+
- spec/rails_app/config/cucumber.yml
|
323
|
+
- spec/rails_app/config/database.yml
|
324
|
+
- spec/rails_app/config/environment.rb
|
325
|
+
- spec/rails_app/config/environments/development.rb
|
326
|
+
- spec/rails_app/config/environments/production.rb
|
327
|
+
- spec/rails_app/config/environments/test.rb
|
328
|
+
- spec/rails_app/config/initializers/backtrace_silencers.rb
|
329
|
+
- spec/rails_app/config/initializers/devise.rb
|
330
|
+
- spec/rails_app/config/initializers/inflections.rb
|
331
|
+
- spec/rails_app/config/initializers/mime_types.rb
|
332
|
+
- spec/rails_app/config/initializers/secret_token.rb
|
333
|
+
- spec/rails_app/config/initializers/session_store.rb
|
334
|
+
- spec/rails_app/config/ldap.yml
|
335
|
+
- spec/rails_app/config/ldap_with_boolean_ssl.yml
|
336
|
+
- spec/rails_app/config/ldap_with_erb.yml
|
337
|
+
- spec/rails_app/config/ldap_with_uid.yml
|
338
|
+
- spec/rails_app/config/locales/devise.en.yml
|
339
|
+
- spec/rails_app/config/locales/en.yml
|
340
|
+
- spec/rails_app/config/routes.rb
|
341
|
+
- spec/rails_app/config/ssl_ldap.yml
|
342
|
+
- spec/rails_app/config/ssl_ldap_with_erb.yml
|
343
|
+
- spec/rails_app/config/ssl_ldap_with_uid.yml
|
344
|
+
- spec/rails_app/db/migrate/20100708120448_devise_create_users.rb
|
345
|
+
- spec/rails_app/db/schema.rb
|
346
|
+
- spec/rails_app/features/manage_logins.feature
|
347
|
+
- spec/rails_app/features/step_definitions/login_steps.rb
|
348
|
+
- spec/rails_app/features/step_definitions/web_steps.rb
|
349
|
+
- spec/rails_app/features/support/env.rb
|
350
|
+
- spec/rails_app/features/support/paths.rb
|
351
|
+
- spec/rails_app/lib/tasks/.gitkeep
|
352
|
+
- spec/rails_app/lib/tasks/cucumber.rake
|
353
|
+
- spec/rails_app/public/404.html
|
354
|
+
- spec/rails_app/public/422.html
|
355
|
+
- spec/rails_app/public/500.html
|
356
|
+
- spec/rails_app/public/images/rails.png
|
357
|
+
- spec/rails_app/public/javascripts/application.js
|
358
|
+
- spec/rails_app/public/javascripts/controls.js
|
359
|
+
- spec/rails_app/public/javascripts/dragdrop.js
|
360
|
+
- spec/rails_app/public/javascripts/effects.js
|
361
|
+
- spec/rails_app/public/javascripts/prototype.js
|
362
|
+
- spec/rails_app/public/javascripts/rails.js
|
363
|
+
- spec/rails_app/public/stylesheets/.gitkeep
|
364
|
+
- spec/rails_app/script/cucumber
|
365
|
+
- spec/rails_app/script/rails
|
366
|
+
- spec/spec_helper.rb
|
367
|
+
- spec/support/factories.rb
|
368
|
+
- spec/unit/user_spec.rb
|