wulffeld_authlogic 2.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. data/CHANGELOG.rdoc +345 -0
  2. data/LICENSE +20 -0
  3. data/README.rdoc +246 -0
  4. data/Rakefile +41 -0
  5. data/VERSION.yml +5 -0
  6. data/generators/session/session_generator.rb +9 -0
  7. data/generators/session/templates/session.rb +2 -0
  8. data/init.rb +1 -0
  9. data/lib/authlogic.rb +64 -0
  10. data/lib/authlogic/acts_as_authentic/base.rb +107 -0
  11. data/lib/authlogic/acts_as_authentic/email.rb +110 -0
  12. data/lib/authlogic/acts_as_authentic/logged_in_status.rb +60 -0
  13. data/lib/authlogic/acts_as_authentic/login.rb +141 -0
  14. data/lib/authlogic/acts_as_authentic/magic_columns.rb +24 -0
  15. data/lib/authlogic/acts_as_authentic/password.rb +355 -0
  16. data/lib/authlogic/acts_as_authentic/perishable_token.rb +105 -0
  17. data/lib/authlogic/acts_as_authentic/persistence_token.rb +68 -0
  18. data/lib/authlogic/acts_as_authentic/restful_authentication.rb +61 -0
  19. data/lib/authlogic/acts_as_authentic/session_maintenance.rb +139 -0
  20. data/lib/authlogic/acts_as_authentic/single_access_token.rb +65 -0
  21. data/lib/authlogic/acts_as_authentic/validations_scope.rb +32 -0
  22. data/lib/authlogic/authenticates_many/association.rb +42 -0
  23. data/lib/authlogic/authenticates_many/base.rb +55 -0
  24. data/lib/authlogic/controller_adapters/abstract_adapter.rb +67 -0
  25. data/lib/authlogic/controller_adapters/merb_adapter.rb +30 -0
  26. data/lib/authlogic/controller_adapters/rails_adapter.rb +52 -0
  27. data/lib/authlogic/controller_adapters/sinatra_adapter.rb +61 -0
  28. data/lib/authlogic/crypto_providers/aes256.rb +43 -0
  29. data/lib/authlogic/crypto_providers/bcrypt.rb +90 -0
  30. data/lib/authlogic/crypto_providers/md5.rb +34 -0
  31. data/lib/authlogic/crypto_providers/sha1.rb +35 -0
  32. data/lib/authlogic/crypto_providers/sha256.rb +50 -0
  33. data/lib/authlogic/crypto_providers/sha512.rb +50 -0
  34. data/lib/authlogic/crypto_providers/wordpress.rb +43 -0
  35. data/lib/authlogic/i18n.rb +83 -0
  36. data/lib/authlogic/i18n/translator.rb +15 -0
  37. data/lib/authlogic/random.rb +33 -0
  38. data/lib/authlogic/regex.rb +25 -0
  39. data/lib/authlogic/session/activation.rb +58 -0
  40. data/lib/authlogic/session/active_record_trickery.rb +64 -0
  41. data/lib/authlogic/session/base.rb +39 -0
  42. data/lib/authlogic/session/brute_force_protection.rb +96 -0
  43. data/lib/authlogic/session/callbacks.rb +99 -0
  44. data/lib/authlogic/session/cookies.rb +130 -0
  45. data/lib/authlogic/session/existence.rb +93 -0
  46. data/lib/authlogic/session/foundation.rb +65 -0
  47. data/lib/authlogic/session/http_auth.rb +58 -0
  48. data/lib/authlogic/session/id.rb +41 -0
  49. data/lib/authlogic/session/klass.rb +78 -0
  50. data/lib/authlogic/session/magic_columns.rb +95 -0
  51. data/lib/authlogic/session/magic_states.rb +59 -0
  52. data/lib/authlogic/session/params.rb +101 -0
  53. data/lib/authlogic/session/password.rb +240 -0
  54. data/lib/authlogic/session/perishable_token.rb +18 -0
  55. data/lib/authlogic/session/persistence.rb +70 -0
  56. data/lib/authlogic/session/priority_record.rb +34 -0
  57. data/lib/authlogic/session/scopes.rb +101 -0
  58. data/lib/authlogic/session/session.rb +62 -0
  59. data/lib/authlogic/session/timeout.rb +82 -0
  60. data/lib/authlogic/session/unauthorized_record.rb +50 -0
  61. data/lib/authlogic/session/validation.rb +82 -0
  62. data/lib/authlogic/test_case.rb +120 -0
  63. data/lib/authlogic/test_case/mock_controller.rb +45 -0
  64. data/lib/authlogic/test_case/mock_cookie_jar.rb +14 -0
  65. data/lib/authlogic/test_case/mock_logger.rb +10 -0
  66. data/lib/authlogic/test_case/mock_request.rb +19 -0
  67. data/lib/authlogic/test_case/rails_request_adapter.rb +30 -0
  68. data/lib/generators/authlogic/session/USAGE +5 -0
  69. data/lib/generators/authlogic/session/session_generator.rb +14 -0
  70. data/lib/generators/authlogic/session/templates/session.rb +2 -0
  71. data/rails/init.rb +1 -0
  72. data/shoulda_macros/authlogic.rb +69 -0
  73. data/test/acts_as_authentic_test/base_test.rb +18 -0
  74. data/test/acts_as_authentic_test/email_test.rb +97 -0
  75. data/test/acts_as_authentic_test/logged_in_status_test.rb +36 -0
  76. data/test/acts_as_authentic_test/login_test.rb +109 -0
  77. data/test/acts_as_authentic_test/magic_columns_test.rb +27 -0
  78. data/test/acts_as_authentic_test/password_test.rb +236 -0
  79. data/test/acts_as_authentic_test/perishable_token_test.rb +90 -0
  80. data/test/acts_as_authentic_test/persistence_token_test.rb +55 -0
  81. data/test/acts_as_authentic_test/restful_authentication_test.rb +40 -0
  82. data/test/acts_as_authentic_test/session_maintenance_test.rb +84 -0
  83. data/test/acts_as_authentic_test/single_access_test.rb +44 -0
  84. data/test/authenticates_many_test.rb +16 -0
  85. data/test/crypto_provider_test/aes256_test.rb +14 -0
  86. data/test/crypto_provider_test/bcrypt_test.rb +14 -0
  87. data/test/crypto_provider_test/sha1_test.rb +23 -0
  88. data/test/crypto_provider_test/sha256_test.rb +14 -0
  89. data/test/crypto_provider_test/sha512_test.rb +14 -0
  90. data/test/fixtures/companies.yml +5 -0
  91. data/test/fixtures/employees.yml +17 -0
  92. data/test/fixtures/projects.yml +3 -0
  93. data/test/fixtures/users.yml +24 -0
  94. data/test/i18n_test.rb +33 -0
  95. data/test/libs/affiliate.rb +7 -0
  96. data/test/libs/company.rb +6 -0
  97. data/test/libs/employee.rb +7 -0
  98. data/test/libs/employee_session.rb +2 -0
  99. data/test/libs/ldaper.rb +3 -0
  100. data/test/libs/ordered_hash.rb +9 -0
  101. data/test/libs/project.rb +3 -0
  102. data/test/libs/user.rb +5 -0
  103. data/test/libs/user_session.rb +6 -0
  104. data/test/random_test.rb +49 -0
  105. data/test/session_test/activation_test.rb +43 -0
  106. data/test/session_test/active_record_trickery_test.rb +36 -0
  107. data/test/session_test/brute_force_protection_test.rb +101 -0
  108. data/test/session_test/callbacks_test.rb +6 -0
  109. data/test/session_test/cookies_test.rb +112 -0
  110. data/test/session_test/credentials_test.rb +0 -0
  111. data/test/session_test/existence_test.rb +64 -0
  112. data/test/session_test/http_auth_test.rb +28 -0
  113. data/test/session_test/id_test.rb +17 -0
  114. data/test/session_test/klass_test.rb +40 -0
  115. data/test/session_test/lint_test.rb +9 -0
  116. data/test/session_test/magic_columns_test.rb +62 -0
  117. data/test/session_test/magic_states_test.rb +60 -0
  118. data/test/session_test/params_test.rb +53 -0
  119. data/test/session_test/password_test.rb +106 -0
  120. data/test/session_test/perishability_test.rb +15 -0
  121. data/test/session_test/persistence_test.rb +21 -0
  122. data/test/session_test/scopes_test.rb +60 -0
  123. data/test/session_test/session_test.rb +59 -0
  124. data/test/session_test/timeout_test.rb +52 -0
  125. data/test/session_test/unauthorized_record_test.rb +13 -0
  126. data/test/session_test/validation_test.rb +23 -0
  127. data/test/test_helper.rb +183 -0
  128. data/wulffeld_authlogic.gemspec +220 -0
  129. metadata +258 -0
metadata ADDED
@@ -0,0 +1,258 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wulffeld_authlogic
3
+ version: !ruby/object:Gem::Version
4
+ hash: 13
5
+ prerelease: false
6
+ segments:
7
+ - 2
8
+ - 1
9
+ - 3
10
+ version: 2.1.3
11
+ platform: ruby
12
+ authors:
13
+ - Ben Johnson of Binary Logic
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-11-25 00:00:00 +01:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: activesupport
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 0
32
+ version: "0"
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ description:
36
+ email: martin@wulffeld.org
37
+ executables: []
38
+
39
+ extensions: []
40
+
41
+ extra_rdoc_files:
42
+ - LICENSE
43
+ - README.rdoc
44
+ files:
45
+ - CHANGELOG.rdoc
46
+ - LICENSE
47
+ - README.rdoc
48
+ - Rakefile
49
+ - VERSION.yml
50
+ - generators/session/session_generator.rb
51
+ - generators/session/templates/session.rb
52
+ - init.rb
53
+ - lib/authlogic.rb
54
+ - lib/authlogic/acts_as_authentic/base.rb
55
+ - lib/authlogic/acts_as_authentic/email.rb
56
+ - lib/authlogic/acts_as_authentic/logged_in_status.rb
57
+ - lib/authlogic/acts_as_authentic/login.rb
58
+ - lib/authlogic/acts_as_authentic/magic_columns.rb
59
+ - lib/authlogic/acts_as_authentic/password.rb
60
+ - lib/authlogic/acts_as_authentic/perishable_token.rb
61
+ - lib/authlogic/acts_as_authentic/persistence_token.rb
62
+ - lib/authlogic/acts_as_authentic/restful_authentication.rb
63
+ - lib/authlogic/acts_as_authentic/session_maintenance.rb
64
+ - lib/authlogic/acts_as_authentic/single_access_token.rb
65
+ - lib/authlogic/acts_as_authentic/validations_scope.rb
66
+ - lib/authlogic/authenticates_many/association.rb
67
+ - lib/authlogic/authenticates_many/base.rb
68
+ - lib/authlogic/controller_adapters/abstract_adapter.rb
69
+ - lib/authlogic/controller_adapters/merb_adapter.rb
70
+ - lib/authlogic/controller_adapters/rails_adapter.rb
71
+ - lib/authlogic/controller_adapters/sinatra_adapter.rb
72
+ - lib/authlogic/crypto_providers/aes256.rb
73
+ - lib/authlogic/crypto_providers/bcrypt.rb
74
+ - lib/authlogic/crypto_providers/md5.rb
75
+ - lib/authlogic/crypto_providers/sha1.rb
76
+ - lib/authlogic/crypto_providers/sha256.rb
77
+ - lib/authlogic/crypto_providers/sha512.rb
78
+ - lib/authlogic/crypto_providers/wordpress.rb
79
+ - lib/authlogic/i18n.rb
80
+ - lib/authlogic/i18n/translator.rb
81
+ - lib/authlogic/random.rb
82
+ - lib/authlogic/regex.rb
83
+ - lib/authlogic/session/activation.rb
84
+ - lib/authlogic/session/active_record_trickery.rb
85
+ - lib/authlogic/session/base.rb
86
+ - lib/authlogic/session/brute_force_protection.rb
87
+ - lib/authlogic/session/callbacks.rb
88
+ - lib/authlogic/session/cookies.rb
89
+ - lib/authlogic/session/existence.rb
90
+ - lib/authlogic/session/foundation.rb
91
+ - lib/authlogic/session/http_auth.rb
92
+ - lib/authlogic/session/id.rb
93
+ - lib/authlogic/session/klass.rb
94
+ - lib/authlogic/session/magic_columns.rb
95
+ - lib/authlogic/session/magic_states.rb
96
+ - lib/authlogic/session/params.rb
97
+ - lib/authlogic/session/password.rb
98
+ - lib/authlogic/session/perishable_token.rb
99
+ - lib/authlogic/session/persistence.rb
100
+ - lib/authlogic/session/priority_record.rb
101
+ - lib/authlogic/session/scopes.rb
102
+ - lib/authlogic/session/session.rb
103
+ - lib/authlogic/session/timeout.rb
104
+ - lib/authlogic/session/unauthorized_record.rb
105
+ - lib/authlogic/session/validation.rb
106
+ - lib/authlogic/test_case.rb
107
+ - lib/authlogic/test_case/mock_controller.rb
108
+ - lib/authlogic/test_case/mock_cookie_jar.rb
109
+ - lib/authlogic/test_case/mock_logger.rb
110
+ - lib/authlogic/test_case/mock_request.rb
111
+ - lib/authlogic/test_case/rails_request_adapter.rb
112
+ - lib/generators/authlogic/session/USAGE
113
+ - lib/generators/authlogic/session/session_generator.rb
114
+ - lib/generators/authlogic/session/templates/session.rb
115
+ - rails/init.rb
116
+ - shoulda_macros/authlogic.rb
117
+ - test/acts_as_authentic_test/base_test.rb
118
+ - test/acts_as_authentic_test/email_test.rb
119
+ - test/acts_as_authentic_test/logged_in_status_test.rb
120
+ - test/acts_as_authentic_test/login_test.rb
121
+ - test/acts_as_authentic_test/magic_columns_test.rb
122
+ - test/acts_as_authentic_test/password_test.rb
123
+ - test/acts_as_authentic_test/perishable_token_test.rb
124
+ - test/acts_as_authentic_test/persistence_token_test.rb
125
+ - test/acts_as_authentic_test/restful_authentication_test.rb
126
+ - test/acts_as_authentic_test/session_maintenance_test.rb
127
+ - test/acts_as_authentic_test/single_access_test.rb
128
+ - test/authenticates_many_test.rb
129
+ - test/crypto_provider_test/aes256_test.rb
130
+ - test/crypto_provider_test/bcrypt_test.rb
131
+ - test/crypto_provider_test/sha1_test.rb
132
+ - test/crypto_provider_test/sha256_test.rb
133
+ - test/crypto_provider_test/sha512_test.rb
134
+ - test/fixtures/companies.yml
135
+ - test/fixtures/employees.yml
136
+ - test/fixtures/projects.yml
137
+ - test/fixtures/users.yml
138
+ - test/i18n_test.rb
139
+ - test/libs/affiliate.rb
140
+ - test/libs/company.rb
141
+ - test/libs/employee.rb
142
+ - test/libs/employee_session.rb
143
+ - test/libs/ldaper.rb
144
+ - test/libs/ordered_hash.rb
145
+ - test/libs/project.rb
146
+ - test/libs/user.rb
147
+ - test/libs/user_session.rb
148
+ - test/random_test.rb
149
+ - test/session_test/activation_test.rb
150
+ - test/session_test/active_record_trickery_test.rb
151
+ - test/session_test/brute_force_protection_test.rb
152
+ - test/session_test/callbacks_test.rb
153
+ - test/session_test/cookies_test.rb
154
+ - test/session_test/credentials_test.rb
155
+ - test/session_test/existence_test.rb
156
+ - test/session_test/http_auth_test.rb
157
+ - test/session_test/id_test.rb
158
+ - test/session_test/klass_test.rb
159
+ - test/session_test/lint_test.rb
160
+ - test/session_test/magic_columns_test.rb
161
+ - test/session_test/magic_states_test.rb
162
+ - test/session_test/params_test.rb
163
+ - test/session_test/password_test.rb
164
+ - test/session_test/perishability_test.rb
165
+ - test/session_test/persistence_test.rb
166
+ - test/session_test/scopes_test.rb
167
+ - test/session_test/session_test.rb
168
+ - test/session_test/timeout_test.rb
169
+ - test/session_test/unauthorized_record_test.rb
170
+ - test/session_test/validation_test.rb
171
+ - test/test_helper.rb
172
+ - wulffeld_authlogic.gemspec
173
+ has_rdoc: true
174
+ homepage: http://github.com/wulffeld/wulffeld_authlogic
175
+ licenses: []
176
+
177
+ post_install_message:
178
+ rdoc_options:
179
+ - --charset=UTF-8
180
+ require_paths:
181
+ - lib
182
+ required_ruby_version: !ruby/object:Gem::Requirement
183
+ none: false
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ hash: 3
188
+ segments:
189
+ - 0
190
+ version: "0"
191
+ required_rubygems_version: !ruby/object:Gem::Requirement
192
+ none: false
193
+ requirements:
194
+ - - ">="
195
+ - !ruby/object:Gem::Version
196
+ hash: 3
197
+ segments:
198
+ - 0
199
+ version: "0"
200
+ requirements: []
201
+
202
+ rubyforge_project:
203
+ rubygems_version: 1.3.7
204
+ signing_key:
205
+ specification_version: 3
206
+ summary: Copy of https://github.com/odorcicd/authlogic - rails3 branch. Just to put it in a gem with a version number.
207
+ test_files:
208
+ - test/acts_as_authentic_test/base_test.rb
209
+ - test/acts_as_authentic_test/email_test.rb
210
+ - test/acts_as_authentic_test/logged_in_status_test.rb
211
+ - test/acts_as_authentic_test/login_test.rb
212
+ - test/acts_as_authentic_test/magic_columns_test.rb
213
+ - test/acts_as_authentic_test/password_test.rb
214
+ - test/acts_as_authentic_test/perishable_token_test.rb
215
+ - test/acts_as_authentic_test/persistence_token_test.rb
216
+ - test/acts_as_authentic_test/restful_authentication_test.rb
217
+ - test/acts_as_authentic_test/session_maintenance_test.rb
218
+ - test/acts_as_authentic_test/single_access_test.rb
219
+ - test/authenticates_many_test.rb
220
+ - test/crypto_provider_test/aes256_test.rb
221
+ - test/crypto_provider_test/bcrypt_test.rb
222
+ - test/crypto_provider_test/sha1_test.rb
223
+ - test/crypto_provider_test/sha256_test.rb
224
+ - test/crypto_provider_test/sha512_test.rb
225
+ - test/i18n_test.rb
226
+ - test/libs/affiliate.rb
227
+ - test/libs/company.rb
228
+ - test/libs/employee.rb
229
+ - test/libs/employee_session.rb
230
+ - test/libs/ldaper.rb
231
+ - test/libs/ordered_hash.rb
232
+ - test/libs/project.rb
233
+ - test/libs/user.rb
234
+ - test/libs/user_session.rb
235
+ - test/random_test.rb
236
+ - test/session_test/activation_test.rb
237
+ - test/session_test/active_record_trickery_test.rb
238
+ - test/session_test/brute_force_protection_test.rb
239
+ - test/session_test/callbacks_test.rb
240
+ - test/session_test/cookies_test.rb
241
+ - test/session_test/credentials_test.rb
242
+ - test/session_test/existence_test.rb
243
+ - test/session_test/http_auth_test.rb
244
+ - test/session_test/id_test.rb
245
+ - test/session_test/klass_test.rb
246
+ - test/session_test/lint_test.rb
247
+ - test/session_test/magic_columns_test.rb
248
+ - test/session_test/magic_states_test.rb
249
+ - test/session_test/params_test.rb
250
+ - test/session_test/password_test.rb
251
+ - test/session_test/perishability_test.rb
252
+ - test/session_test/persistence_test.rb
253
+ - test/session_test/scopes_test.rb
254
+ - test/session_test/session_test.rb
255
+ - test/session_test/timeout_test.rb
256
+ - test/session_test/unauthorized_record_test.rb
257
+ - test/session_test/validation_test.rb
258
+ - test/test_helper.rb