charanya-devise_ldap_authenticatable 0.4.6

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 (94) hide show
  1. data/.gitignore +6 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +175 -0
  4. data/Rakefile +54 -0
  5. data/VERSION +1 -0
  6. data/charanya-devise_ldap_authenticatable.gemspec +173 -0
  7. data/lib/devise_ldap_authenticatable.rb +45 -0
  8. data/lib/devise_ldap_authenticatable/exception.rb +6 -0
  9. data/lib/devise_ldap_authenticatable/ldap_adapter.rb +237 -0
  10. data/lib/devise_ldap_authenticatable/logger.rb +11 -0
  11. data/lib/devise_ldap_authenticatable/model.rb +118 -0
  12. data/lib/devise_ldap_authenticatable/routes.rb +8 -0
  13. data/lib/devise_ldap_authenticatable/schema.rb +14 -0
  14. data/lib/devise_ldap_authenticatable/strategy.rb +36 -0
  15. data/lib/devise_ldap_authenticatable/version.rb +4 -0
  16. data/lib/generators/devise_ldap_authenticatable/install_generator.rb +61 -0
  17. data/lib/generators/devise_ldap_authenticatable/templates/ldap.yml +75 -0
  18. data/rails/init.rb +2 -0
  19. data/test/devise_ldap_authenticatable_test.rb +8 -0
  20. data/test/ldap/base.ldif +73 -0
  21. data/test/ldap/clear.ldif +26 -0
  22. data/test/ldap/local.schema +6 -0
  23. data/test/ldap/run-server.sh +10 -0
  24. data/test/ldap/server.pem +38 -0
  25. data/test/ldap/slapd-ssl-test.conf +107 -0
  26. data/test/ldap/slapd-test.conf +107 -0
  27. data/test/rails_app/Gemfile +22 -0
  28. data/test/rails_app/Gemfile.lock +157 -0
  29. data/test/rails_app/Rakefile +7 -0
  30. data/test/rails_app/app/controllers/application_controller.rb +4 -0
  31. data/test/rails_app/app/controllers/posts_controller.rb +15 -0
  32. data/test/rails_app/app/helpers/application_helper.rb +2 -0
  33. data/test/rails_app/app/helpers/posts_helper.rb +2 -0
  34. data/test/rails_app/app/models/post.rb +2 -0
  35. data/test/rails_app/app/models/user.rb +10 -0
  36. data/test/rails_app/app/views/layouts/application.html.erb +26 -0
  37. data/test/rails_app/app/views/posts/index.html.erb +2 -0
  38. data/test/rails_app/config.ru +4 -0
  39. data/test/rails_app/config/application.rb +46 -0
  40. data/test/rails_app/config/boot.rb +13 -0
  41. data/test/rails_app/config/cucumber.yml +8 -0
  42. data/test/rails_app/config/database.yml +25 -0
  43. data/test/rails_app/config/environment.rb +5 -0
  44. data/test/rails_app/config/environments/development.rb +22 -0
  45. data/test/rails_app/config/environments/production.rb +46 -0
  46. data/test/rails_app/config/environments/test.rb +34 -0
  47. data/test/rails_app/config/initializers/backtrace_silencers.rb +7 -0
  48. data/test/rails_app/config/initializers/devise.rb +140 -0
  49. data/test/rails_app/config/initializers/inflections.rb +10 -0
  50. data/test/rails_app/config/initializers/mime_types.rb +5 -0
  51. data/test/rails_app/config/initializers/secret_token.rb +7 -0
  52. data/test/rails_app/config/initializers/session_store.rb +8 -0
  53. data/test/rails_app/config/ldap.yml +22 -0
  54. data/test/rails_app/config/ldap_with_erb.yml +23 -0
  55. data/test/rails_app/config/ldap_with_uid.yml +18 -0
  56. data/test/rails_app/config/locales/devise.en.yml +39 -0
  57. data/test/rails_app/config/locales/en.yml +5 -0
  58. data/test/rails_app/config/routes.rb +64 -0
  59. data/test/rails_app/config/ssl_ldap.yml +21 -0
  60. data/test/rails_app/config/ssl_ldap_with_erb.yml +23 -0
  61. data/test/rails_app/config/ssl_ldap_with_uid.yml +18 -0
  62. data/test/rails_app/db/migrate/20100708120302_create_posts.rb +14 -0
  63. data/test/rails_app/db/migrate/20100708120448_devise_create_users.rb +26 -0
  64. data/test/rails_app/db/schema.rb +42 -0
  65. data/test/rails_app/db/seeds.rb +7 -0
  66. data/test/rails_app/features/manage_logins.feature +35 -0
  67. data/test/rails_app/features/step_definitions/login_steps.rb +21 -0
  68. data/test/rails_app/features/step_definitions/web_steps.rb +219 -0
  69. data/test/rails_app/features/support/env.rb +58 -0
  70. data/test/rails_app/features/support/paths.rb +38 -0
  71. data/test/rails_app/lib/tasks/.gitkeep +0 -0
  72. data/test/rails_app/lib/tasks/cucumber.rake +53 -0
  73. data/test/rails_app/public/404.html +26 -0
  74. data/test/rails_app/public/422.html +26 -0
  75. data/test/rails_app/public/500.html +26 -0
  76. data/test/rails_app/public/images/rails.png +0 -0
  77. data/test/rails_app/public/javascripts/application.js +2 -0
  78. data/test/rails_app/public/javascripts/controls.js +965 -0
  79. data/test/rails_app/public/javascripts/dragdrop.js +974 -0
  80. data/test/rails_app/public/javascripts/effects.js +1123 -0
  81. data/test/rails_app/public/javascripts/prototype.js +4874 -0
  82. data/test/rails_app/public/javascripts/rails.js +118 -0
  83. data/test/rails_app/public/stylesheets/.gitkeep +0 -0
  84. data/test/rails_app/script/cucumber +10 -0
  85. data/test/rails_app/script/rails +6 -0
  86. data/test/rails_app/test/factories/users.rb +14 -0
  87. data/test/rails_app/test/functional/posts_controller_test.rb +58 -0
  88. data/test/rails_app/test/performance/browsing_test.rb +9 -0
  89. data/test/rails_app/test/test_helper.rb +36 -0
  90. data/test/rails_app/test/unit/helpers/posts_helper_test.rb +4 -0
  91. data/test/rails_app/test/unit/post_test.rb +4 -0
  92. data/test/rails_app/test/unit/user_test.rb +211 -0
  93. data/test/test_helper.rb +3 -0
  94. metadata +217 -0
@@ -0,0 +1,3 @@
1
+ require 'rubygems'
2
+ require 'active_support'
3
+ require 'active_support/test_case'
metadata ADDED
@@ -0,0 +1,217 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: charanya-devise_ldap_authenticatable
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 4
8
+ - 6
9
+ version: 0.4.6
10
+ platform: ruby
11
+ authors:
12
+ - Curtis Schiewek
13
+ - Daniel McNevin
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-09-23 00:00:00 +05:30
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: devise
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 1
30
+ - 1
31
+ - 2
32
+ version: 1.1.2
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: net-ldap
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ segments:
43
+ - 0
44
+ - 1
45
+ - 1
46
+ version: 0.1.1
47
+ type: :runtime
48
+ version_requirements: *id002
49
+ description: LDAP authentication module for Devise
50
+ email: curtis.schiewek@gmail.com
51
+ executables: []
52
+
53
+ extensions: []
54
+
55
+ extra_rdoc_files:
56
+ - README.md
57
+ files:
58
+ - .gitignore
59
+ - MIT-LICENSE
60
+ - README.md
61
+ - Rakefile
62
+ - VERSION
63
+ - charanya-devise_ldap_authenticatable.gemspec
64
+ - lib/devise_ldap_authenticatable.rb
65
+ - lib/devise_ldap_authenticatable/exception.rb
66
+ - lib/devise_ldap_authenticatable/ldap_adapter.rb
67
+ - lib/devise_ldap_authenticatable/logger.rb
68
+ - lib/devise_ldap_authenticatable/model.rb
69
+ - lib/devise_ldap_authenticatable/routes.rb
70
+ - lib/devise_ldap_authenticatable/schema.rb
71
+ - lib/devise_ldap_authenticatable/strategy.rb
72
+ - lib/devise_ldap_authenticatable/version.rb
73
+ - lib/generators/devise_ldap_authenticatable/install_generator.rb
74
+ - lib/generators/devise_ldap_authenticatable/templates/ldap.yml
75
+ - rails/init.rb
76
+ - test/devise_ldap_authenticatable_test.rb
77
+ - test/ldap/base.ldif
78
+ - test/ldap/clear.ldif
79
+ - test/ldap/local.schema
80
+ - test/ldap/run-server.sh
81
+ - test/ldap/server.pem
82
+ - test/ldap/slapd-ssl-test.conf
83
+ - test/ldap/slapd-test.conf
84
+ - test/rails_app/Gemfile
85
+ - test/rails_app/Gemfile.lock
86
+ - test/rails_app/Rakefile
87
+ - test/rails_app/app/controllers/application_controller.rb
88
+ - test/rails_app/app/controllers/posts_controller.rb
89
+ - test/rails_app/app/helpers/application_helper.rb
90
+ - test/rails_app/app/helpers/posts_helper.rb
91
+ - test/rails_app/app/models/post.rb
92
+ - test/rails_app/app/models/user.rb
93
+ - test/rails_app/app/views/layouts/application.html.erb
94
+ - test/rails_app/app/views/posts/index.html.erb
95
+ - test/rails_app/config.ru
96
+ - test/rails_app/config/application.rb
97
+ - test/rails_app/config/boot.rb
98
+ - test/rails_app/config/cucumber.yml
99
+ - test/rails_app/config/database.yml
100
+ - test/rails_app/config/environment.rb
101
+ - test/rails_app/config/environments/development.rb
102
+ - test/rails_app/config/environments/production.rb
103
+ - test/rails_app/config/environments/test.rb
104
+ - test/rails_app/config/initializers/backtrace_silencers.rb
105
+ - test/rails_app/config/initializers/devise.rb
106
+ - test/rails_app/config/initializers/inflections.rb
107
+ - test/rails_app/config/initializers/mime_types.rb
108
+ - test/rails_app/config/initializers/secret_token.rb
109
+ - test/rails_app/config/initializers/session_store.rb
110
+ - test/rails_app/config/ldap.yml
111
+ - test/rails_app/config/ldap_with_erb.yml
112
+ - test/rails_app/config/ldap_with_uid.yml
113
+ - test/rails_app/config/locales/devise.en.yml
114
+ - test/rails_app/config/locales/en.yml
115
+ - test/rails_app/config/routes.rb
116
+ - test/rails_app/config/ssl_ldap.yml
117
+ - test/rails_app/config/ssl_ldap_with_erb.yml
118
+ - test/rails_app/config/ssl_ldap_with_uid.yml
119
+ - test/rails_app/db/migrate/20100708120302_create_posts.rb
120
+ - test/rails_app/db/migrate/20100708120448_devise_create_users.rb
121
+ - test/rails_app/db/schema.rb
122
+ - test/rails_app/db/seeds.rb
123
+ - test/rails_app/features/manage_logins.feature
124
+ - test/rails_app/features/step_definitions/login_steps.rb
125
+ - test/rails_app/features/step_definitions/web_steps.rb
126
+ - test/rails_app/features/support/env.rb
127
+ - test/rails_app/features/support/paths.rb
128
+ - test/rails_app/lib/tasks/.gitkeep
129
+ - test/rails_app/lib/tasks/cucumber.rake
130
+ - test/rails_app/public/404.html
131
+ - test/rails_app/public/422.html
132
+ - test/rails_app/public/500.html
133
+ - test/rails_app/public/images/rails.png
134
+ - test/rails_app/public/javascripts/application.js
135
+ - test/rails_app/public/javascripts/controls.js
136
+ - test/rails_app/public/javascripts/dragdrop.js
137
+ - test/rails_app/public/javascripts/effects.js
138
+ - test/rails_app/public/javascripts/prototype.js
139
+ - test/rails_app/public/javascripts/rails.js
140
+ - test/rails_app/public/stylesheets/.gitkeep
141
+ - test/rails_app/script/cucumber
142
+ - test/rails_app/script/rails
143
+ - test/rails_app/test/factories/users.rb
144
+ - test/rails_app/test/functional/posts_controller_test.rb
145
+ - test/rails_app/test/performance/browsing_test.rb
146
+ - test/rails_app/test/test_helper.rb
147
+ - test/rails_app/test/unit/helpers/posts_helper_test.rb
148
+ - test/rails_app/test/unit/post_test.rb
149
+ - test/rails_app/test/unit/user_test.rb
150
+ - test/test_helper.rb
151
+ has_rdoc: true
152
+ homepage: http://github.com/cschiewek/devise_ldap_authenticatable
153
+ licenses: []
154
+
155
+ post_install_message:
156
+ rdoc_options:
157
+ - --charset=UTF-8
158
+ require_paths:
159
+ - lib
160
+ required_ruby_version: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ segments:
165
+ - 0
166
+ version: "0"
167
+ required_rubygems_version: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - ">="
170
+ - !ruby/object:Gem::Version
171
+ segments:
172
+ - 0
173
+ version: "0"
174
+ requirements: []
175
+
176
+ rubyforge_project:
177
+ rubygems_version: 1.3.6
178
+ signing_key:
179
+ specification_version: 3
180
+ summary: LDAP authentication module for Devise
181
+ test_files:
182
+ - test/devise_ldap_authenticatable_test.rb
183
+ - test/rails_app/app/controllers/application_controller.rb
184
+ - test/rails_app/app/controllers/posts_controller.rb
185
+ - test/rails_app/app/helpers/application_helper.rb
186
+ - test/rails_app/app/helpers/posts_helper.rb
187
+ - test/rails_app/app/models/post.rb
188
+ - test/rails_app/app/models/user.rb
189
+ - test/rails_app/config/application.rb
190
+ - test/rails_app/config/boot.rb
191
+ - test/rails_app/config/environment.rb
192
+ - test/rails_app/config/environments/development.rb
193
+ - test/rails_app/config/environments/production.rb
194
+ - test/rails_app/config/environments/test.rb
195
+ - test/rails_app/config/initializers/backtrace_silencers.rb
196
+ - test/rails_app/config/initializers/devise.rb
197
+ - test/rails_app/config/initializers/inflections.rb
198
+ - test/rails_app/config/initializers/mime_types.rb
199
+ - test/rails_app/config/initializers/secret_token.rb
200
+ - test/rails_app/config/initializers/session_store.rb
201
+ - test/rails_app/config/routes.rb
202
+ - test/rails_app/db/migrate/20100708120302_create_posts.rb
203
+ - test/rails_app/db/migrate/20100708120448_devise_create_users.rb
204
+ - test/rails_app/db/schema.rb
205
+ - test/rails_app/db/seeds.rb
206
+ - test/rails_app/features/step_definitions/login_steps.rb
207
+ - test/rails_app/features/step_definitions/web_steps.rb
208
+ - test/rails_app/features/support/env.rb
209
+ - test/rails_app/features/support/paths.rb
210
+ - test/rails_app/test/factories/users.rb
211
+ - test/rails_app/test/functional/posts_controller_test.rb
212
+ - test/rails_app/test/performance/browsing_test.rb
213
+ - test/rails_app/test/test_helper.rb
214
+ - test/rails_app/test/unit/helpers/posts_helper_test.rb
215
+ - test/rails_app/test/unit/post_test.rb
216
+ - test/rails_app/test/unit/user_test.rb
217
+ - test/test_helper.rb