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