forked from binarylogic/authlogic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
authlogic.gemspec
216 lines (211 loc) · 8.76 KB
/
authlogic.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{authlogic}
s.version = "2.1.6"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ben Johnson of Binary Logic"]
s.date = %q{2010-08-04}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".gitignore",
"CHANGELOG.rdoc",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION.yml",
"authlogic.gemspec",
"generators/session/session_generator.rb",
"generators/session/templates/session.rb",
"init.rb",
"lib/authlogic.rb",
"lib/authlogic/acts_as_authentic/base.rb",
"lib/authlogic/acts_as_authentic/email.rb",
"lib/authlogic/acts_as_authentic/logged_in_status.rb",
"lib/authlogic/acts_as_authentic/login.rb",
"lib/authlogic/acts_as_authentic/magic_columns.rb",
"lib/authlogic/acts_as_authentic/password.rb",
"lib/authlogic/acts_as_authentic/perishable_token.rb",
"lib/authlogic/acts_as_authentic/persistence_token.rb",
"lib/authlogic/acts_as_authentic/restful_authentication.rb",
"lib/authlogic/acts_as_authentic/session_maintenance.rb",
"lib/authlogic/acts_as_authentic/single_access_token.rb",
"lib/authlogic/acts_as_authentic/validations_scope.rb",
"lib/authlogic/authenticates_many/association.rb",
"lib/authlogic/authenticates_many/base.rb",
"lib/authlogic/controller_adapters/abstract_adapter.rb",
"lib/authlogic/controller_adapters/merb_adapter.rb",
"lib/authlogic/controller_adapters/rails_adapter.rb",
"lib/authlogic/controller_adapters/sinatra_adapter.rb",
"lib/authlogic/crypto_providers/aes256.rb",
"lib/authlogic/crypto_providers/bcrypt.rb",
"lib/authlogic/crypto_providers/md5.rb",
"lib/authlogic/crypto_providers/sha1.rb",
"lib/authlogic/crypto_providers/sha256.rb",
"lib/authlogic/crypto_providers/sha512.rb",
"lib/authlogic/crypto_providers/wordpress.rb",
"lib/authlogic/i18n.rb",
"lib/authlogic/i18n/translator.rb",
"lib/authlogic/random.rb",
"lib/authlogic/regex.rb",
"lib/authlogic/session/activation.rb",
"lib/authlogic/session/active_record_trickery.rb",
"lib/authlogic/session/base.rb",
"lib/authlogic/session/brute_force_protection.rb",
"lib/authlogic/session/callbacks.rb",
"lib/authlogic/session/cookies.rb",
"lib/authlogic/session/existence.rb",
"lib/authlogic/session/foundation.rb",
"lib/authlogic/session/http_auth.rb",
"lib/authlogic/session/id.rb",
"lib/authlogic/session/klass.rb",
"lib/authlogic/session/magic_columns.rb",
"lib/authlogic/session/magic_states.rb",
"lib/authlogic/session/params.rb",
"lib/authlogic/session/password.rb",
"lib/authlogic/session/perishable_token.rb",
"lib/authlogic/session/persistence.rb",
"lib/authlogic/session/priority_record.rb",
"lib/authlogic/session/scopes.rb",
"lib/authlogic/session/session.rb",
"lib/authlogic/session/timeout.rb",
"lib/authlogic/session/unauthorized_record.rb",
"lib/authlogic/session/validation.rb",
"lib/authlogic/test_case.rb",
"lib/authlogic/test_case/mock_controller.rb",
"lib/authlogic/test_case/mock_cookie_jar.rb",
"lib/authlogic/test_case/mock_logger.rb",
"lib/authlogic/test_case/mock_request.rb",
"lib/authlogic/test_case/rails_request_adapter.rb",
"rails/init.rb",
"shoulda_macros/authlogic.rb",
"test/acts_as_authentic_test/base_test.rb",
"test/acts_as_authentic_test/email_test.rb",
"test/acts_as_authentic_test/logged_in_status_test.rb",
"test/acts_as_authentic_test/login_test.rb",
"test/acts_as_authentic_test/magic_columns_test.rb",
"test/acts_as_authentic_test/password_test.rb",
"test/acts_as_authentic_test/perishable_token_test.rb",
"test/acts_as_authentic_test/persistence_token_test.rb",
"test/acts_as_authentic_test/restful_authentication_test.rb",
"test/acts_as_authentic_test/session_maintenance_test.rb",
"test/acts_as_authentic_test/single_access_test.rb",
"test/authenticates_many_test.rb",
"test/crypto_provider_test/aes256_test.rb",
"test/crypto_provider_test/bcrypt_test.rb",
"test/crypto_provider_test/sha1_test.rb",
"test/crypto_provider_test/sha256_test.rb",
"test/crypto_provider_test/sha512_test.rb",
"test/fixtures/companies.yml",
"test/fixtures/employees.yml",
"test/fixtures/projects.yml",
"test/fixtures/users.yml",
"test/i18n_test.rb",
"test/libs/affiliate.rb",
"test/libs/company.rb",
"test/libs/employee.rb",
"test/libs/employee_session.rb",
"test/libs/ldaper.rb",
"test/libs/ordered_hash.rb",
"test/libs/project.rb",
"test/libs/user.rb",
"test/libs/user_session.rb",
"test/random_test.rb",
"test/session_test/activation_test.rb",
"test/session_test/active_record_trickery_test.rb",
"test/session_test/brute_force_protection_test.rb",
"test/session_test/callbacks_test.rb",
"test/session_test/cookies_test.rb",
"test/session_test/credentials_test.rb",
"test/session_test/existence_test.rb",
"test/session_test/http_auth_test.rb",
"test/session_test/id_test.rb",
"test/session_test/klass_test.rb",
"test/session_test/magic_columns_test.rb",
"test/session_test/magic_states_test.rb",
"test/session_test/params_test.rb",
"test/session_test/password_test.rb",
"test/session_test/perishability_test.rb",
"test/session_test/persistence_test.rb",
"test/session_test/scopes_test.rb",
"test/session_test/session_test.rb",
"test/session_test/timeout_test.rb",
"test/session_test/unauthorized_record_test.rb",
"test/session_test/validation_test.rb",
"test/test_helper.rb"
]
s.homepage = %q{http://github.com/binarylogic/authlogic}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{A clean, simple, and unobtrusive ruby authentication solution.}
s.test_files = [
"test/acts_as_authentic_test/base_test.rb",
"test/acts_as_authentic_test/email_test.rb",
"test/acts_as_authentic_test/logged_in_status_test.rb",
"test/acts_as_authentic_test/login_test.rb",
"test/acts_as_authentic_test/magic_columns_test.rb",
"test/acts_as_authentic_test/password_test.rb",
"test/acts_as_authentic_test/perishable_token_test.rb",
"test/acts_as_authentic_test/persistence_token_test.rb",
"test/acts_as_authentic_test/restful_authentication_test.rb",
"test/acts_as_authentic_test/session_maintenance_test.rb",
"test/acts_as_authentic_test/single_access_test.rb",
"test/authenticates_many_test.rb",
"test/crypto_provider_test/aes256_test.rb",
"test/crypto_provider_test/bcrypt_test.rb",
"test/crypto_provider_test/sha1_test.rb",
"test/crypto_provider_test/sha256_test.rb",
"test/crypto_provider_test/sha512_test.rb",
"test/i18n_test.rb",
"test/libs/affiliate.rb",
"test/libs/company.rb",
"test/libs/employee.rb",
"test/libs/employee_session.rb",
"test/libs/ldaper.rb",
"test/libs/ordered_hash.rb",
"test/libs/project.rb",
"test/libs/user.rb",
"test/libs/user_session.rb",
"test/random_test.rb",
"test/session_test/activation_test.rb",
"test/session_test/active_record_trickery_test.rb",
"test/session_test/brute_force_protection_test.rb",
"test/session_test/callbacks_test.rb",
"test/session_test/cookies_test.rb",
"test/session_test/credentials_test.rb",
"test/session_test/existence_test.rb",
"test/session_test/http_auth_test.rb",
"test/session_test/id_test.rb",
"test/session_test/klass_test.rb",
"test/session_test/magic_columns_test.rb",
"test/session_test/magic_states_test.rb",
"test/session_test/params_test.rb",
"test/session_test/password_test.rb",
"test/session_test/perishability_test.rb",
"test/session_test/persistence_test.rb",
"test/session_test/scopes_test.rb",
"test/session_test/session_test.rb",
"test/session_test/timeout_test.rb",
"test/session_test/unauthorized_record_test.rb",
"test/session_test/validation_test.rb",
"test/test_helper.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
else
s.add_dependency(%q<activesupport>, [">= 0"])
end
else
s.add_dependency(%q<activesupport>, [">= 0"])
end
end