novelys_authlogic 2.1.3

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