devise 2.0.0.rc → 2.0.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of devise might be problematic. Click here for more details.
- data/CHANGELOG.rdoc +94 -74
- data/README.rdoc +2 -2
- data/app/controllers/devise/confirmations_controller.rb +3 -6
- data/app/controllers/devise/omniauth_callbacks_controller.rb +1 -3
- data/app/controllers/devise/passwords_controller.rb +3 -6
- data/app/controllers/devise/registrations_controller.rb +34 -41
- data/app/controllers/devise/sessions_controller.rb +2 -3
- data/app/controllers/devise/unlocks_controller.rb +3 -5
- data/app/controllers/devise_controller.rb +169 -0
- data/app/views/devise/_links.erb +25 -0
- data/app/views/devise/confirmations/new.html.erb +1 -1
- data/app/views/devise/passwords/edit.html.erb +1 -1
- data/app/views/devise/passwords/new.html.erb +1 -1
- data/app/views/devise/registrations/new.html.erb +1 -1
- data/app/views/devise/sessions/new.html.erb +1 -1
- data/app/views/devise/shared/_links.erb +3 -25
- data/app/views/devise/unlocks/new.html.erb +1 -1
- data/config/locales/en.yml +4 -6
- data/lib/devise.rb +15 -11
- data/lib/devise/controllers/helpers.rb +8 -2
- data/lib/devise/controllers/scoped_views.rb +0 -16
- data/lib/devise/controllers/url_helpers.rb +16 -2
- data/lib/devise/failure_app.rb +43 -8
- data/lib/devise/models.rb +1 -1
- data/lib/devise/models/confirmable.rb +12 -9
- data/lib/devise/models/lockable.rb +1 -1
- data/lib/devise/models/serializable.rb +5 -2
- data/lib/devise/modules.rb +2 -2
- data/lib/devise/param_filter.rb +1 -1
- data/lib/devise/path_checker.rb +5 -1
- data/lib/devise/rails.rb +21 -0
- data/lib/devise/rails/routes.rb +16 -10
- data/lib/devise/rails/warden_compat.rb +0 -83
- data/lib/devise/strategies/authenticatable.rb +2 -2
- data/lib/devise/version.rb +1 -1
- data/lib/generators/active_record/devise_generator.rb +1 -1
- data/lib/generators/active_record/templates/migration.rb +0 -10
- data/lib/generators/devise/views_generator.rb +6 -14
- data/lib/generators/templates/devise.rb +11 -3
- data/lib/generators/templates/simple_form_for/confirmations/new.html.erb +1 -1
- data/lib/generators/templates/simple_form_for/passwords/edit.html.erb +1 -1
- data/lib/generators/templates/simple_form_for/passwords/new.html.erb +1 -1
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +1 -1
- data/lib/generators/templates/simple_form_for/sessions/new.html.erb +1 -1
- data/lib/generators/templates/simple_form_for/unlocks/new.html.erb +1 -1
- data/test/controllers/internal_helpers_test.rb +1 -2
- data/test/failure_app_test.rb +24 -20
- data/test/generators/active_record_generator_test.rb +3 -13
- data/test/generators/views_generator_test.rb +1 -1
- data/test/integration/authenticatable_test.rb +4 -7
- data/test/integration/http_authenticatable_test.rb +4 -4
- data/test/integration/lockable_test.rb +24 -12
- data/test/integration/registerable_test.rb +1 -1
- data/test/integration/timeoutable_test.rb +18 -4
- data/test/integration/token_authenticatable_test.rb +3 -3
- data/test/integration/trackable_test.rb +5 -5
- data/test/models/confirmable_test.rb +15 -0
- data/test/models/database_authenticatable_test.rb +6 -0
- data/test/models/lockable_test.rb +13 -0
- data/test/rails_app/app/mongoid/user.rb +1 -1
- data/test/rails_app/config/routes.rb +3 -5
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +1 -1
- data/test/rails_app/lib/shared_admin.rb +1 -0
- data/test/rails_app/log/development.log +13 -0
- data/test/rails_app/log/test.log +290988 -0
- data/test/support/helpers.rb +0 -17
- metadata +105 -57
- data/.gitignore +0 -10
- data/.travis.yml +0 -13
- data/Gemfile +0 -35
- data/Gemfile.lock +0 -168
- data/Rakefile +0 -34
- data/devise.gemspec +0 -25
- data/lib/devise/controllers/internal_helpers.rb +0 -161
- data/lib/devise/controllers/shared_helpers.rb +0 -26
data/test/support/helpers.rb
CHANGED
@@ -67,21 +67,4 @@ class ActiveSupport::TestCase
|
|
67
67
|
end
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def with_rails_version(constants)
|
72
|
-
saved_constants = {}
|
73
|
-
|
74
|
-
constants.each do |constant, val|
|
75
|
-
saved_constants[constant] = ::Rails::VERSION.const_get constant
|
76
|
-
Kernel::silence_warnings { ::Rails::VERSION.const_set(constant, val) }
|
77
|
-
end
|
78
|
-
|
79
|
-
begin
|
80
|
-
yield
|
81
|
-
ensure
|
82
|
-
constants.each do |constant, val|
|
83
|
-
Kernel::silence_warnings { ::Rails::VERSION.const_set(constant, saved_constants[constant]) }
|
84
|
-
end
|
85
|
-
end
|
86
|
-
end
|
87
70
|
end
|
metadata
CHANGED
@@ -1,72 +1,108 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 15424081
|
5
5
|
prerelease: 6
|
6
|
+
segments:
|
7
|
+
- 2
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
- rc
|
11
|
+
- 2
|
12
|
+
version: 2.0.0.rc2
|
6
13
|
platform: ruby
|
7
|
-
authors:
|
8
|
-
-
|
9
|
-
- Carlos
|
14
|
+
authors:
|
15
|
+
- "Jos\xC3\xA9 Valim"
|
16
|
+
- "Carlos Ant\xC3\xB4nio"
|
10
17
|
autorequire:
|
11
18
|
bindir: bin
|
12
19
|
cert_chain: []
|
13
|
-
|
14
|
-
|
15
|
-
|
20
|
+
|
21
|
+
date: 2012-01-24 00:00:00 Z
|
22
|
+
dependencies:
|
23
|
+
- !ruby/object:Gem::Dependency
|
16
24
|
name: warden
|
17
|
-
|
25
|
+
prerelease: false
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
18
27
|
none: false
|
19
|
-
requirements:
|
28
|
+
requirements:
|
20
29
|
- - ~>
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
hash: 13
|
32
|
+
segments:
|
33
|
+
- 1
|
34
|
+
- 1
|
35
|
+
version: "1.1"
|
23
36
|
type: :runtime
|
24
|
-
|
25
|
-
|
26
|
-
- !ruby/object:Gem::Dependency
|
37
|
+
version_requirements: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
27
39
|
name: orm_adapter
|
28
|
-
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
29
42
|
none: false
|
30
|
-
requirements:
|
43
|
+
requirements:
|
31
44
|
- - ~>
|
32
|
-
- !ruby/object:Gem::Version
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 25
|
47
|
+
segments:
|
48
|
+
- 0
|
49
|
+
- 0
|
50
|
+
- 3
|
33
51
|
version: 0.0.3
|
34
52
|
type: :runtime
|
35
|
-
|
36
|
-
|
37
|
-
- !ruby/object:Gem::Dependency
|
53
|
+
version_requirements: *id002
|
54
|
+
- !ruby/object:Gem::Dependency
|
38
55
|
name: bcrypt-ruby
|
39
|
-
|
56
|
+
prerelease: false
|
57
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
40
58
|
none: false
|
41
|
-
requirements:
|
59
|
+
requirements:
|
42
60
|
- - ~>
|
43
|
-
- !ruby/object:Gem::Version
|
44
|
-
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
hash: 7
|
63
|
+
segments:
|
64
|
+
- 3
|
65
|
+
- 0
|
66
|
+
version: "3.0"
|
45
67
|
type: :runtime
|
68
|
+
version_requirements: *id003
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: railties
|
46
71
|
prerelease: false
|
47
|
-
|
72
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 5
|
78
|
+
segments:
|
79
|
+
- 3
|
80
|
+
- 1
|
81
|
+
version: "3.1"
|
82
|
+
type: :runtime
|
83
|
+
version_requirements: *id004
|
48
84
|
description: Flexible authentication solution for Rails with Warden
|
49
85
|
email: contact@plataformatec.com.br
|
50
86
|
executables: []
|
87
|
+
|
51
88
|
extensions: []
|
89
|
+
|
52
90
|
extra_rdoc_files: []
|
53
|
-
|
54
|
-
|
55
|
-
- .travis.yml
|
91
|
+
|
92
|
+
files:
|
56
93
|
- CHANGELOG.rdoc
|
57
|
-
- Gemfile
|
58
|
-
- Gemfile.lock
|
59
94
|
- MIT-LICENSE
|
60
95
|
- README.rdoc
|
61
|
-
- Rakefile
|
62
96
|
- app/controllers/devise/confirmations_controller.rb
|
63
97
|
- app/controllers/devise/omniauth_callbacks_controller.rb
|
64
98
|
- app/controllers/devise/passwords_controller.rb
|
65
99
|
- app/controllers/devise/registrations_controller.rb
|
66
100
|
- app/controllers/devise/sessions_controller.rb
|
67
101
|
- app/controllers/devise/unlocks_controller.rb
|
102
|
+
- app/controllers/devise_controller.rb
|
68
103
|
- app/helpers/devise_helper.rb
|
69
104
|
- app/mailers/devise/mailer.rb
|
105
|
+
- app/views/devise/_links.erb
|
70
106
|
- app/views/devise/confirmations/new.html.erb
|
71
107
|
- app/views/devise/mailer/confirmation_instructions.html.erb
|
72
108
|
- app/views/devise/mailer/reset_password_instructions.html.erb
|
@@ -79,13 +115,9 @@ files:
|
|
79
115
|
- app/views/devise/shared/_links.erb
|
80
116
|
- app/views/devise/unlocks/new.html.erb
|
81
117
|
- config/locales/en.yml
|
82
|
-
- devise.gemspec
|
83
|
-
- lib/devise.rb
|
84
118
|
- lib/devise/controllers/helpers.rb
|
85
|
-
- lib/devise/controllers/internal_helpers.rb
|
86
119
|
- lib/devise/controllers/rememberable.rb
|
87
120
|
- lib/devise/controllers/scoped_views.rb
|
88
|
-
- lib/devise/controllers/shared_helpers.rb
|
89
121
|
- lib/devise/controllers/url_helpers.rb
|
90
122
|
- lib/devise/delegator.rb
|
91
123
|
- lib/devise/encryptors/authlogic_sha512.rb
|
@@ -102,7 +134,6 @@ files:
|
|
102
134
|
- lib/devise/hooks/trackable.rb
|
103
135
|
- lib/devise/mailers/helpers.rb
|
104
136
|
- lib/devise/mapping.rb
|
105
|
-
- lib/devise/models.rb
|
106
137
|
- lib/devise/models/authenticatable.rb
|
107
138
|
- lib/devise/models/confirmable.rb
|
108
139
|
- lib/devise/models/database_authenticatable.rb
|
@@ -117,17 +148,18 @@ files:
|
|
117
148
|
- lib/devise/models/token_authenticatable.rb
|
118
149
|
- lib/devise/models/trackable.rb
|
119
150
|
- lib/devise/models/validatable.rb
|
151
|
+
- lib/devise/models.rb
|
120
152
|
- lib/devise/modules.rb
|
121
|
-
- lib/devise/omniauth.rb
|
122
153
|
- lib/devise/omniauth/config.rb
|
123
154
|
- lib/devise/omniauth/url_helpers.rb
|
155
|
+
- lib/devise/omniauth.rb
|
124
156
|
- lib/devise/orm/active_record.rb
|
125
157
|
- lib/devise/orm/mongoid.rb
|
126
158
|
- lib/devise/param_filter.rb
|
127
159
|
- lib/devise/path_checker.rb
|
128
|
-
- lib/devise/rails.rb
|
129
160
|
- lib/devise/rails/routes.rb
|
130
161
|
- lib/devise/rails/warden_compat.rb
|
162
|
+
- lib/devise/rails.rb
|
131
163
|
- lib/devise/schema.rb
|
132
164
|
- lib/devise/strategies/authenticatable.rb
|
133
165
|
- lib/devise/strategies/base.rb
|
@@ -136,6 +168,7 @@ files:
|
|
136
168
|
- lib/devise/strategies/token_authenticatable.rb
|
137
169
|
- lib/devise/test_helpers.rb
|
138
170
|
- lib/devise/version.rb
|
171
|
+
- lib/devise.rb
|
139
172
|
- lib/generators/active_record/devise_generator.rb
|
140
173
|
- lib/generators/active_record/templates/migration.rb
|
141
174
|
- lib/generators/active_record/templates/migration_existing.rb
|
@@ -144,11 +177,11 @@ files:
|
|
144
177
|
- lib/generators/devise/orm_helpers.rb
|
145
178
|
- lib/generators/devise/views_generator.rb
|
146
179
|
- lib/generators/mongoid/devise_generator.rb
|
147
|
-
- lib/generators/templates/README
|
148
180
|
- lib/generators/templates/devise.rb
|
149
181
|
- lib/generators/templates/markerb/confirmation_instructions.markerb
|
150
182
|
- lib/generators/templates/markerb/reset_password_instructions.markerb
|
151
183
|
- lib/generators/templates/markerb/unlock_instructions.markerb
|
184
|
+
- lib/generators/templates/README
|
152
185
|
- lib/generators/templates/simple_form_for/confirmations/new.html.erb
|
153
186
|
- lib/generators/templates/simple_form_for/passwords/edit.html.erb
|
154
187
|
- lib/generators/templates/simple_form_for/passwords/new.html.erb
|
@@ -204,7 +237,6 @@ files:
|
|
204
237
|
- test/orm/active_record.rb
|
205
238
|
- test/orm/mongoid.rb
|
206
239
|
- test/path_checker_test.rb
|
207
|
-
- test/rails_app/Rakefile
|
208
240
|
- test/rails_app/app/active_record/admin.rb
|
209
241
|
- test/rails_app/app/active_record/shim.rb
|
210
242
|
- test/rails_app/app/active_record/user.rb
|
@@ -232,7 +264,6 @@ files:
|
|
232
264
|
- test/rails_app/app/views/users/index.html.erb
|
233
265
|
- test/rails_app/app/views/users/mailer/confirmation_instructions.erb
|
234
266
|
- test/rails_app/app/views/users/sessions/new.html.erb
|
235
|
-
- test/rails_app/config.ru
|
236
267
|
- test/rails_app/config/application.rb
|
237
268
|
- test/rails_app/config/boot.rb
|
238
269
|
- test/rails_app/config/database.yml
|
@@ -245,14 +276,18 @@ files:
|
|
245
276
|
- test/rails_app/config/initializers/inflections.rb
|
246
277
|
- test/rails_app/config/initializers/secret_token.rb
|
247
278
|
- test/rails_app/config/routes.rb
|
279
|
+
- test/rails_app/config.ru
|
248
280
|
- test/rails_app/db/migrate/20100401102949_create_tables.rb
|
249
281
|
- test/rails_app/db/schema.rb
|
250
282
|
- test/rails_app/lib/shared_admin.rb
|
251
283
|
- test/rails_app/lib/shared_user.rb
|
284
|
+
- test/rails_app/log/development.log
|
285
|
+
- test/rails_app/log/test.log
|
252
286
|
- test/rails_app/public/404.html
|
253
287
|
- test/rails_app/public/422.html
|
254
288
|
- test/rails_app/public/500.html
|
255
289
|
- test/rails_app/public/favicon.ico
|
290
|
+
- test/rails_app/Rakefile
|
256
291
|
- test/rails_app/script/rails
|
257
292
|
- test/routes_test.rb
|
258
293
|
- test/support/assertions.rb
|
@@ -264,29 +299,40 @@ files:
|
|
264
299
|
- test/test_helpers_test.rb
|
265
300
|
homepage: http://github.com/plataformatec/devise
|
266
301
|
licenses: []
|
302
|
+
|
267
303
|
post_install_message:
|
268
304
|
rdoc_options: []
|
269
|
-
|
305
|
+
|
306
|
+
require_paths:
|
270
307
|
- lib
|
271
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
308
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
272
309
|
none: false
|
273
|
-
requirements:
|
274
|
-
- -
|
275
|
-
- !ruby/object:Gem::Version
|
276
|
-
|
277
|
-
|
310
|
+
requirements:
|
311
|
+
- - ">="
|
312
|
+
- !ruby/object:Gem::Version
|
313
|
+
hash: 3
|
314
|
+
segments:
|
315
|
+
- 0
|
316
|
+
version: "0"
|
317
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
278
318
|
none: false
|
279
|
-
requirements:
|
280
|
-
- -
|
281
|
-
- !ruby/object:Gem::Version
|
319
|
+
requirements:
|
320
|
+
- - ">"
|
321
|
+
- !ruby/object:Gem::Version
|
322
|
+
hash: 25
|
323
|
+
segments:
|
324
|
+
- 1
|
325
|
+
- 3
|
326
|
+
- 1
|
282
327
|
version: 1.3.1
|
283
328
|
requirements: []
|
329
|
+
|
284
330
|
rubyforge_project: devise
|
285
|
-
rubygems_version: 1.8.
|
331
|
+
rubygems_version: 1.8.15
|
286
332
|
signing_key:
|
287
333
|
specification_version: 3
|
288
334
|
summary: Flexible authentication solution for Rails with Warden
|
289
|
-
test_files:
|
335
|
+
test_files:
|
290
336
|
- test/controllers/helpers_test.rb
|
291
337
|
- test/controllers/internal_helpers_test.rb
|
292
338
|
- test/controllers/sessions_controller_test.rb
|
@@ -335,7 +381,6 @@ test_files:
|
|
335
381
|
- test/orm/active_record.rb
|
336
382
|
- test/orm/mongoid.rb
|
337
383
|
- test/path_checker_test.rb
|
338
|
-
- test/rails_app/Rakefile
|
339
384
|
- test/rails_app/app/active_record/admin.rb
|
340
385
|
- test/rails_app/app/active_record/shim.rb
|
341
386
|
- test/rails_app/app/active_record/user.rb
|
@@ -363,7 +408,6 @@ test_files:
|
|
363
408
|
- test/rails_app/app/views/users/index.html.erb
|
364
409
|
- test/rails_app/app/views/users/mailer/confirmation_instructions.erb
|
365
410
|
- test/rails_app/app/views/users/sessions/new.html.erb
|
366
|
-
- test/rails_app/config.ru
|
367
411
|
- test/rails_app/config/application.rb
|
368
412
|
- test/rails_app/config/boot.rb
|
369
413
|
- test/rails_app/config/database.yml
|
@@ -376,14 +420,18 @@ test_files:
|
|
376
420
|
- test/rails_app/config/initializers/inflections.rb
|
377
421
|
- test/rails_app/config/initializers/secret_token.rb
|
378
422
|
- test/rails_app/config/routes.rb
|
423
|
+
- test/rails_app/config.ru
|
379
424
|
- test/rails_app/db/migrate/20100401102949_create_tables.rb
|
380
425
|
- test/rails_app/db/schema.rb
|
381
426
|
- test/rails_app/lib/shared_admin.rb
|
382
427
|
- test/rails_app/lib/shared_user.rb
|
428
|
+
- test/rails_app/log/development.log
|
429
|
+
- test/rails_app/log/test.log
|
383
430
|
- test/rails_app/public/404.html
|
384
431
|
- test/rails_app/public/422.html
|
385
432
|
- test/rails_app/public/500.html
|
386
433
|
- test/rails_app/public/favicon.ico
|
434
|
+
- test/rails_app/Rakefile
|
387
435
|
- test/rails_app/script/rails
|
388
436
|
- test/routes_test.rb
|
389
437
|
- test/support/assertions.rb
|
data/.gitignore
DELETED
data/.travis.yml
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
script: "bundle exec rake test"
|
2
|
-
rvm:
|
3
|
-
- 1.8.7
|
4
|
-
- 1.9.2
|
5
|
-
- ree
|
6
|
-
- rbx
|
7
|
-
- rbx-2.0
|
8
|
-
notifications:
|
9
|
-
recipients:
|
10
|
-
- jose.valim@plataformatec.com.br
|
11
|
-
- carlos@plataformatec.com.br
|
12
|
-
- rodrigo.flores@plataformatec.com.br
|
13
|
-
- rafael.franca@plataformatec.com.br
|
data/Gemfile
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
source "http://rubygems.org"
|
2
|
-
|
3
|
-
gemspec
|
4
|
-
|
5
|
-
gem "rails", "~> 3.1.0"
|
6
|
-
gem "omniauth", "~> 1.0.0"
|
7
|
-
gem "omniauth-oauth2", "~> 1.0.0"
|
8
|
-
gem "rdoc"
|
9
|
-
|
10
|
-
group :test do
|
11
|
-
gem "omniauth-facebook"
|
12
|
-
gem "omniauth-openid", "~> 1.0.1"
|
13
|
-
gem "webrat", "0.7.2", :require => false
|
14
|
-
gem "mocha", :require => false
|
15
|
-
|
16
|
-
platforms :mri_18 do
|
17
|
-
gem "ruby-debug", ">= 0.10.3"
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
platforms :jruby do
|
22
|
-
gem "activerecord-jdbc-adapter"
|
23
|
-
gem "activerecord-jdbcsqlite3-adapter"
|
24
|
-
gem "jruby-openssl"
|
25
|
-
end
|
26
|
-
|
27
|
-
platforms :ruby do
|
28
|
-
gem "sqlite3-ruby"
|
29
|
-
|
30
|
-
group :mongoid do
|
31
|
-
gem "mongo", "~> 1.3.0"
|
32
|
-
gem "mongoid", "~> 2.0"
|
33
|
-
gem "bson_ext", "~> 1.3.0"
|
34
|
-
end
|
35
|
-
end
|
data/Gemfile.lock
DELETED
@@ -1,168 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
devise (1.5.2)
|
5
|
-
bcrypt-ruby (~> 3.0)
|
6
|
-
orm_adapter (~> 0.0.3)
|
7
|
-
warden (~> 1.1)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: http://rubygems.org/
|
11
|
-
specs:
|
12
|
-
actionmailer (3.1.3)
|
13
|
-
actionpack (= 3.1.3)
|
14
|
-
mail (~> 2.3.0)
|
15
|
-
actionpack (3.1.3)
|
16
|
-
activemodel (= 3.1.3)
|
17
|
-
activesupport (= 3.1.3)
|
18
|
-
builder (~> 3.0.0)
|
19
|
-
erubis (~> 2.7.0)
|
20
|
-
i18n (~> 0.6)
|
21
|
-
rack (~> 1.3.5)
|
22
|
-
rack-cache (~> 1.1)
|
23
|
-
rack-mount (~> 0.8.2)
|
24
|
-
rack-test (~> 0.6.1)
|
25
|
-
sprockets (~> 2.0.3)
|
26
|
-
activemodel (3.1.3)
|
27
|
-
activesupport (= 3.1.3)
|
28
|
-
builder (~> 3.0.0)
|
29
|
-
i18n (~> 0.6)
|
30
|
-
activerecord (3.1.3)
|
31
|
-
activemodel (= 3.1.3)
|
32
|
-
activesupport (= 3.1.3)
|
33
|
-
arel (~> 2.2.1)
|
34
|
-
tzinfo (~> 0.3.29)
|
35
|
-
activeresource (3.1.3)
|
36
|
-
activemodel (= 3.1.3)
|
37
|
-
activesupport (= 3.1.3)
|
38
|
-
activesupport (3.1.3)
|
39
|
-
multi_json (~> 1.0)
|
40
|
-
addressable (2.2.6)
|
41
|
-
arel (2.2.1)
|
42
|
-
bcrypt-ruby (3.0.1)
|
43
|
-
bson (1.5.1)
|
44
|
-
bson_ext (1.3.1)
|
45
|
-
builder (3.0.0)
|
46
|
-
columnize (0.3.5)
|
47
|
-
erubis (2.7.0)
|
48
|
-
faraday (0.7.5)
|
49
|
-
addressable (~> 2.2.6)
|
50
|
-
multipart-post (~> 1.1.3)
|
51
|
-
rack (>= 1.1.0, < 2)
|
52
|
-
hashie (1.2.0)
|
53
|
-
hike (1.2.1)
|
54
|
-
i18n (0.6.0)
|
55
|
-
json (1.6.3)
|
56
|
-
linecache (0.46)
|
57
|
-
rbx-require-relative (> 0.0.4)
|
58
|
-
mail (2.3.0)
|
59
|
-
i18n (>= 0.4.0)
|
60
|
-
mime-types (~> 1.16)
|
61
|
-
treetop (~> 1.4.8)
|
62
|
-
metaclass (0.0.1)
|
63
|
-
mime-types (1.17.2)
|
64
|
-
mocha (0.10.0)
|
65
|
-
metaclass (~> 0.0.1)
|
66
|
-
mongo (1.3.1)
|
67
|
-
bson (>= 1.3.1)
|
68
|
-
mongoid (2.3.4)
|
69
|
-
activemodel (~> 3.1)
|
70
|
-
mongo (~> 1.3)
|
71
|
-
tzinfo (~> 0.3.22)
|
72
|
-
multi_json (1.0.4)
|
73
|
-
multipart-post (1.1.4)
|
74
|
-
nokogiri (1.5.0)
|
75
|
-
oauth2 (0.5.1)
|
76
|
-
faraday (~> 0.7.4)
|
77
|
-
multi_json (~> 1.0.3)
|
78
|
-
omniauth (1.0.1)
|
79
|
-
hashie (~> 1.2)
|
80
|
-
rack
|
81
|
-
omniauth-facebook (1.0.0)
|
82
|
-
omniauth-oauth2 (~> 1.0.0)
|
83
|
-
omniauth-oauth2 (1.0.0)
|
84
|
-
oauth2 (~> 0.5.0)
|
85
|
-
omniauth (~> 1.0)
|
86
|
-
omniauth-openid (1.0.1)
|
87
|
-
omniauth (~> 1.0)
|
88
|
-
rack-openid (~> 1.3.1)
|
89
|
-
orm_adapter (0.0.5)
|
90
|
-
polyglot (0.3.3)
|
91
|
-
rack (1.3.5)
|
92
|
-
rack-cache (1.1)
|
93
|
-
rack (>= 0.4)
|
94
|
-
rack-mount (0.8.3)
|
95
|
-
rack (>= 1.0.0)
|
96
|
-
rack-openid (1.3.1)
|
97
|
-
rack (>= 1.1.0)
|
98
|
-
ruby-openid (>= 2.1.8)
|
99
|
-
rack-ssl (1.3.2)
|
100
|
-
rack
|
101
|
-
rack-test (0.6.1)
|
102
|
-
rack (>= 1.0)
|
103
|
-
rails (3.1.3)
|
104
|
-
actionmailer (= 3.1.3)
|
105
|
-
actionpack (= 3.1.3)
|
106
|
-
activerecord (= 3.1.3)
|
107
|
-
activeresource (= 3.1.3)
|
108
|
-
activesupport (= 3.1.3)
|
109
|
-
bundler (~> 1.0)
|
110
|
-
railties (= 3.1.3)
|
111
|
-
railties (3.1.3)
|
112
|
-
actionpack (= 3.1.3)
|
113
|
-
activesupport (= 3.1.3)
|
114
|
-
rack-ssl (~> 1.3.2)
|
115
|
-
rake (>= 0.8.7)
|
116
|
-
rdoc (~> 3.4)
|
117
|
-
thor (~> 0.14.6)
|
118
|
-
rake (0.9.2.2)
|
119
|
-
rbx-require-relative (0.0.5)
|
120
|
-
rdoc (3.11)
|
121
|
-
json (~> 1.4)
|
122
|
-
ruby-debug (0.10.4)
|
123
|
-
columnize (>= 0.1)
|
124
|
-
ruby-debug-base (~> 0.10.4.0)
|
125
|
-
ruby-debug-base (0.10.4)
|
126
|
-
linecache (>= 0.3)
|
127
|
-
ruby-openid (2.1.8)
|
128
|
-
sprockets (2.0.3)
|
129
|
-
hike (~> 1.2)
|
130
|
-
rack (~> 1.0)
|
131
|
-
tilt (~> 1.1, != 1.3.0)
|
132
|
-
sqlite3 (1.3.5)
|
133
|
-
sqlite3-ruby (1.3.3)
|
134
|
-
sqlite3 (>= 1.3.3)
|
135
|
-
thor (0.14.6)
|
136
|
-
tilt (1.3.3)
|
137
|
-
treetop (1.4.10)
|
138
|
-
polyglot
|
139
|
-
polyglot (>= 0.3.1)
|
140
|
-
tzinfo (0.3.31)
|
141
|
-
warden (1.1.0)
|
142
|
-
rack (>= 1.0)
|
143
|
-
webrat (0.7.2)
|
144
|
-
nokogiri (>= 1.2.0)
|
145
|
-
rack (>= 1.0)
|
146
|
-
rack-test (>= 0.5.3)
|
147
|
-
|
148
|
-
PLATFORMS
|
149
|
-
ruby
|
150
|
-
|
151
|
-
DEPENDENCIES
|
152
|
-
activerecord-jdbc-adapter
|
153
|
-
activerecord-jdbcsqlite3-adapter
|
154
|
-
bson_ext (~> 1.3.0)
|
155
|
-
devise!
|
156
|
-
jruby-openssl
|
157
|
-
mocha
|
158
|
-
mongo (~> 1.3.0)
|
159
|
-
mongoid (~> 2.0)
|
160
|
-
omniauth (~> 1.0.0)
|
161
|
-
omniauth-facebook
|
162
|
-
omniauth-oauth2 (~> 1.0.0)
|
163
|
-
omniauth-openid (~> 1.0.1)
|
164
|
-
rails (~> 3.1.0)
|
165
|
-
rdoc
|
166
|
-
ruby-debug (>= 0.10.3)
|
167
|
-
sqlite3-ruby
|
168
|
-
webrat (= 0.7.2)
|