devise_ldap_authenticatable 0.6.1 → 0.7.0

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 (104) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +7 -0
  4. data/Gemfile +1 -4
  5. data/README.md +45 -92
  6. data/Rakefile +8 -7
  7. data/devise_ldap_authenticatable.gemspec +15 -3
  8. data/lib/devise_ldap_authenticatable/ldap_adapter.rb +51 -27
  9. data/lib/devise_ldap_authenticatable/model.rb +5 -1
  10. data/lib/devise_ldap_authenticatable/strategy.rb +3 -1
  11. data/lib/devise_ldap_authenticatable/version.rb +1 -1
  12. data/lib/generators/devise_ldap_authenticatable/templates/ldap.yml +3 -3
  13. data/spec/ldap/.gitignore +2 -0
  14. data/{test → spec}/ldap/base.ldif +0 -0
  15. data/{test → spec}/ldap/clear.ldif +0 -0
  16. data/{test → spec}/ldap/local.schema +0 -0
  17. data/spec/ldap/openldap-data/.gitignore +2 -0
  18. data/spec/ldap/openldap-data/run/.gitignore +2 -0
  19. data/{test → spec}/ldap/openldap-data/run/.gitkeep +0 -0
  20. data/spec/ldap/run-server +31 -0
  21. data/{test → spec}/ldap/server.pem +0 -0
  22. data/{test/ldap/slapd-test.conf → spec/ldap/slapd-test.conf.erb} +16 -16
  23. data/{test → spec}/rails_app/Rakefile +0 -0
  24. data/spec/rails_app/app/controllers/application_controller.rb +7 -0
  25. data/{test → spec}/rails_app/app/controllers/posts_controller.rb +0 -0
  26. data/{test → spec}/rails_app/app/helpers/application_helper.rb +0 -0
  27. data/{test → spec}/rails_app/app/helpers/posts_helper.rb +0 -0
  28. data/{test → spec}/rails_app/app/models/post.rb +0 -0
  29. data/{test → spec}/rails_app/app/models/user.rb +0 -0
  30. data/{test → spec}/rails_app/app/views/layouts/application.html.erb +0 -0
  31. data/{test → spec}/rails_app/app/views/posts/index.html.erb +0 -0
  32. data/{test → spec}/rails_app/config.ru +0 -0
  33. data/{test → spec}/rails_app/config/application.rb +0 -0
  34. data/{test → spec}/rails_app/config/boot.rb +1 -1
  35. data/{test → spec}/rails_app/config/cucumber.yml +0 -0
  36. data/{test → spec}/rails_app/config/database.yml +0 -0
  37. data/{test → spec}/rails_app/config/environment.rb +0 -0
  38. data/{test → spec}/rails_app/config/environments/development.rb +0 -1
  39. data/{test → spec}/rails_app/config/environments/production.rb +0 -0
  40. data/{test → spec}/rails_app/config/environments/test.rb +1 -1
  41. data/{test → spec}/rails_app/config/initializers/backtrace_silencers.rb +0 -0
  42. data/spec/rails_app/config/initializers/devise.rb +242 -0
  43. data/{test → spec}/rails_app/config/initializers/inflections.rb +0 -0
  44. data/{test → spec}/rails_app/config/initializers/mime_types.rb +0 -0
  45. data/{test → spec}/rails_app/config/initializers/secret_token.rb +0 -0
  46. data/{test → spec}/rails_app/config/initializers/session_store.rb +0 -0
  47. data/{test → spec}/rails_app/config/ldap.yml +0 -0
  48. data/{test → spec}/rails_app/config/ldap_with_boolean_ssl.yml +0 -0
  49. data/{test → spec}/rails_app/config/ldap_with_erb.yml +0 -0
  50. data/{test → spec}/rails_app/config/ldap_with_uid.yml +0 -0
  51. data/spec/rails_app/config/locales/devise.en.yml +58 -0
  52. data/{test → spec}/rails_app/config/locales/en.yml +0 -0
  53. data/{test → spec}/rails_app/config/routes.rb +0 -0
  54. data/{test → spec}/rails_app/config/ssl_ldap.yml +0 -0
  55. data/{test → spec}/rails_app/config/ssl_ldap_with_erb.yml +0 -0
  56. data/{test → spec}/rails_app/config/ssl_ldap_with_uid.yml +0 -0
  57. data/{test → spec}/rails_app/db/migrate/20100708120448_devise_create_users.rb +18 -4
  58. data/{test → spec}/rails_app/db/schema.rb +6 -13
  59. data/{test → spec}/rails_app/features/manage_logins.feature +0 -0
  60. data/{test → spec}/rails_app/features/step_definitions/login_steps.rb +0 -0
  61. data/{test → spec}/rails_app/features/step_definitions/web_steps.rb +0 -0
  62. data/{test → spec}/rails_app/features/support/env.rb +0 -0
  63. data/{test → spec}/rails_app/features/support/paths.rb +0 -0
  64. data/{test → spec}/rails_app/lib/tasks/.gitkeep +0 -0
  65. data/{test → spec}/rails_app/lib/tasks/cucumber.rake +0 -0
  66. data/{test → spec}/rails_app/public/404.html +0 -0
  67. data/{test → spec}/rails_app/public/422.html +0 -0
  68. data/{test → spec}/rails_app/public/500.html +0 -0
  69. data/{test → spec}/rails_app/public/images/rails.png +0 -0
  70. data/{test → spec}/rails_app/public/javascripts/application.js +0 -0
  71. data/{test → spec}/rails_app/public/javascripts/controls.js +0 -0
  72. data/{test → spec}/rails_app/public/javascripts/dragdrop.js +0 -0
  73. data/{test → spec}/rails_app/public/javascripts/effects.js +0 -0
  74. data/{test → spec}/rails_app/public/javascripts/prototype.js +0 -0
  75. data/{test → spec}/rails_app/public/javascripts/rails.js +0 -0
  76. data/{test → spec}/rails_app/public/stylesheets/.gitkeep +0 -0
  77. data/{test → spec}/rails_app/script/cucumber +0 -0
  78. data/{test → spec}/rails_app/script/rails +0 -0
  79. data/spec/spec_helper.rb +47 -0
  80. data/spec/support/factories.rb +16 -0
  81. data/spec/unit/user_spec.rb +303 -0
  82. metadata +292 -179
  83. data/Gemfile.lock +0 -92
  84. data/rails/init.rb +0 -2
  85. data/test/devise_ldap_authenticatable_test.rb +0 -8
  86. data/test/ldap/run-server.sh +0 -10
  87. data/test/ldap/slapd-ssl-test.conf +0 -107
  88. data/test/rails_app/Gemfile +0 -22
  89. data/test/rails_app/Gemfile.lock +0 -159
  90. data/test/rails_app/app/controllers/application_controller.rb +0 -4
  91. data/test/rails_app/config/initializers/devise.rb +0 -140
  92. data/test/rails_app/config/ldap_with_check_membership_off.yml +0 -23
  93. data/test/rails_app/config/ldap_with_check_membership_on.yml +0 -23
  94. data/test/rails_app/config/locales/devise.en.yml +0 -39
  95. data/test/rails_app/db/migrate/20100708120302_create_posts.rb +0 -14
  96. data/test/rails_app/db/seeds.rb +0 -7
  97. data/test/rails_app/test/factories/users.rb +0 -14
  98. data/test/rails_app/test/functional/posts_controller_test.rb +0 -58
  99. data/test/rails_app/test/performance/browsing_test.rb +0 -9
  100. data/test/rails_app/test/test_helper.rb +0 -36
  101. data/test/rails_app/test/unit/helpers/posts_helper_test.rb +0 -4
  102. data/test/rails_app/test/unit/post_test.rb +0 -4
  103. data/test/rails_app/test/unit/user_test.rb +0 -314
  104. 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.6.1
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: 2012-06-20 00:00:00.000000000 Z
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.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.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.2.2
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.2.2
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
- - rails/init.rb
73
- - test/devise_ldap_authenticatable_test.rb
74
- - test/ldap/base.ldif
75
- - test/ldap/clear.ldif
76
- - test/ldap/local.schema
77
- - test/ldap/openldap-data/run/.gitkeep
78
- - test/ldap/run-server.sh
79
- - test/ldap/server.pem
80
- - test/ldap/slapd-ssl-test.conf
81
- - test/ldap/slapd-test.conf
82
- - test/rails_app/Gemfile
83
- - test/rails_app/Gemfile.lock
84
- - test/rails_app/Rakefile
85
- - test/rails_app/app/controllers/application_controller.rb
86
- - test/rails_app/app/controllers/posts_controller.rb
87
- - test/rails_app/app/helpers/application_helper.rb
88
- - test/rails_app/app/helpers/posts_helper.rb
89
- - test/rails_app/app/models/post.rb
90
- - test/rails_app/app/models/user.rb
91
- - test/rails_app/app/views/layouts/application.html.erb
92
- - test/rails_app/app/views/posts/index.html.erb
93
- - test/rails_app/config.ru
94
- - test/rails_app/config/application.rb
95
- - test/rails_app/config/boot.rb
96
- - test/rails_app/config/cucumber.yml
97
- - test/rails_app/config/database.yml
98
- - test/rails_app/config/environment.rb
99
- - test/rails_app/config/environments/development.rb
100
- - test/rails_app/config/environments/production.rb
101
- - test/rails_app/config/environments/test.rb
102
- - test/rails_app/config/initializers/backtrace_silencers.rb
103
- - test/rails_app/config/initializers/devise.rb
104
- - test/rails_app/config/initializers/inflections.rb
105
- - test/rails_app/config/initializers/mime_types.rb
106
- - test/rails_app/config/initializers/secret_token.rb
107
- - test/rails_app/config/initializers/session_store.rb
108
- - test/rails_app/config/ldap.yml
109
- - test/rails_app/config/ldap_with_boolean_ssl.yml
110
- - test/rails_app/config/ldap_with_check_membership_off.yml
111
- - test/rails_app/config/ldap_with_check_membership_on.yml
112
- - test/rails_app/config/ldap_with_erb.yml
113
- - test/rails_app/config/ldap_with_uid.yml
114
- - test/rails_app/config/locales/devise.en.yml
115
- - test/rails_app/config/locales/en.yml
116
- - test/rails_app/config/routes.rb
117
- - test/rails_app/config/ssl_ldap.yml
118
- - test/rails_app/config/ssl_ldap_with_erb.yml
119
- - test/rails_app/config/ssl_ldap_with_uid.yml
120
- - test/rails_app/db/migrate/20100708120302_create_posts.rb
121
- - test/rails_app/db/migrate/20100708120448_devise_create_users.rb
122
- - test/rails_app/db/schema.rb
123
- - test/rails_app/db/seeds.rb
124
- - test/rails_app/features/manage_logins.feature
125
- - test/rails_app/features/step_definitions/login_steps.rb
126
- - test/rails_app/features/step_definitions/web_steps.rb
127
- - test/rails_app/features/support/env.rb
128
- - test/rails_app/features/support/paths.rb
129
- - test/rails_app/lib/tasks/.gitkeep
130
- - test/rails_app/lib/tasks/cucumber.rake
131
- - test/rails_app/public/404.html
132
- - test/rails_app/public/422.html
133
- - test/rails_app/public/500.html
134
- - test/rails_app/public/images/rails.png
135
- - test/rails_app/public/javascripts/application.js
136
- - test/rails_app/public/javascripts/controls.js
137
- - test/rails_app/public/javascripts/dragdrop.js
138
- - test/rails_app/public/javascripts/effects.js
139
- - test/rails_app/public/javascripts/prototype.js
140
- - test/rails_app/public/javascripts/rails.js
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: 1.8.24
295
+ rubygems_version: 2.0.0
173
296
  signing_key:
174
- specification_version: 3
297
+ specification_version: 4
175
298
  summary: Devise extension to allow authentication via LDAP
176
299
  test_files:
177
- - test/devise_ldap_authenticatable_test.rb
178
- - test/ldap/base.ldif
179
- - test/ldap/clear.ldif
180
- - test/ldap/local.schema
181
- - test/ldap/openldap-data/run/.gitkeep
182
- - test/ldap/run-server.sh
183
- - test/ldap/server.pem
184
- - test/ldap/slapd-ssl-test.conf
185
- - test/ldap/slapd-test.conf
186
- - test/rails_app/Gemfile
187
- - test/rails_app/Gemfile.lock
188
- - test/rails_app/Rakefile
189
- - test/rails_app/app/controllers/application_controller.rb
190
- - test/rails_app/app/controllers/posts_controller.rb
191
- - test/rails_app/app/helpers/application_helper.rb
192
- - test/rails_app/app/helpers/posts_helper.rb
193
- - test/rails_app/app/models/post.rb
194
- - test/rails_app/app/models/user.rb
195
- - test/rails_app/app/views/layouts/application.html.erb
196
- - test/rails_app/app/views/posts/index.html.erb
197
- - test/rails_app/config.ru
198
- - test/rails_app/config/application.rb
199
- - test/rails_app/config/boot.rb
200
- - test/rails_app/config/cucumber.yml
201
- - test/rails_app/config/database.yml
202
- - test/rails_app/config/environment.rb
203
- - test/rails_app/config/environments/development.rb
204
- - test/rails_app/config/environments/production.rb
205
- - test/rails_app/config/environments/test.rb
206
- - test/rails_app/config/initializers/backtrace_silencers.rb
207
- - test/rails_app/config/initializers/devise.rb
208
- - test/rails_app/config/initializers/inflections.rb
209
- - test/rails_app/config/initializers/mime_types.rb
210
- - test/rails_app/config/initializers/secret_token.rb
211
- - test/rails_app/config/initializers/session_store.rb
212
- - test/rails_app/config/ldap.yml
213
- - test/rails_app/config/ldap_with_boolean_ssl.yml
214
- - test/rails_app/config/ldap_with_check_membership_off.yml
215
- - test/rails_app/config/ldap_with_check_membership_on.yml
216
- - test/rails_app/config/ldap_with_erb.yml
217
- - test/rails_app/config/ldap_with_uid.yml
218
- - test/rails_app/config/locales/devise.en.yml
219
- - test/rails_app/config/locales/en.yml
220
- - test/rails_app/config/routes.rb
221
- - test/rails_app/config/ssl_ldap.yml
222
- - test/rails_app/config/ssl_ldap_with_erb.yml
223
- - test/rails_app/config/ssl_ldap_with_uid.yml
224
- - test/rails_app/db/migrate/20100708120302_create_posts.rb
225
- - test/rails_app/db/migrate/20100708120448_devise_create_users.rb
226
- - test/rails_app/db/schema.rb
227
- - test/rails_app/db/seeds.rb
228
- - test/rails_app/features/manage_logins.feature
229
- - test/rails_app/features/step_definitions/login_steps.rb
230
- - test/rails_app/features/step_definitions/web_steps.rb
231
- - test/rails_app/features/support/env.rb
232
- - test/rails_app/features/support/paths.rb
233
- - test/rails_app/lib/tasks/.gitkeep
234
- - test/rails_app/lib/tasks/cucumber.rake
235
- - test/rails_app/public/404.html
236
- - test/rails_app/public/422.html
237
- - test/rails_app/public/500.html
238
- - test/rails_app/public/images/rails.png
239
- - test/rails_app/public/javascripts/application.js
240
- - test/rails_app/public/javascripts/controls.js
241
- - test/rails_app/public/javascripts/dragdrop.js
242
- - test/rails_app/public/javascripts/effects.js
243
- - test/rails_app/public/javascripts/prototype.js
244
- - test/rails_app/public/javascripts/rails.js
245
- - test/rails_app/public/stylesheets/.gitkeep
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