devise 3.3.0 → 3.5.10
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.
- checksums.yaml +4 -4
- data/.travis.yml +29 -20
- data/CHANGELOG.md +219 -102
- data/CODE_OF_CONDUCT.md +22 -0
- data/CONTRIBUTING.md +2 -0
- data/Gemfile +3 -2
- data/Gemfile.lock +101 -80
- data/MIT-LICENSE +1 -1
- data/README.md +87 -43
- data/Rakefile +2 -1
- data/app/controllers/devise/confirmations_controller.rb +5 -1
- data/app/controllers/devise/omniauth_callbacks_controller.rb +4 -0
- data/app/controllers/devise/passwords_controller.rb +14 -4
- data/app/controllers/devise/registrations_controller.rb +10 -11
- data/app/controllers/devise/sessions_controller.rb +7 -2
- data/app/controllers/devise/unlocks_controller.rb +3 -0
- data/app/controllers/devise_controller.rb +44 -21
- data/app/mailers/devise/mailer.rb +4 -0
- data/app/views/devise/confirmations/new.html.erb +7 -3
- data/app/views/devise/mailer/password_change.html.erb +3 -0
- data/app/views/devise/passwords/edit.html.erb +14 -5
- data/app/views/devise/passwords/new.html.erb +7 -3
- data/app/views/devise/registrations/edit.html.erb +19 -9
- data/app/views/devise/registrations/new.html.erb +18 -7
- data/app/views/devise/sessions/new.html.erb +15 -6
- data/app/views/devise/shared/{_links.erb → _links.html.erb} +1 -1
- data/app/views/devise/unlocks/new.html.erb +7 -3
- data/config/locales/en.yml +4 -2
- data/devise.gemspec +2 -2
- data/gemfiles/Gemfile.rails-3.2-stable.lock +54 -48
- data/gemfiles/Gemfile.rails-4.0-stable +1 -0
- data/gemfiles/Gemfile.rails-4.0-stable.lock +63 -59
- data/gemfiles/{Gemfile.rails-head → Gemfile.rails-4.1-stable} +3 -5
- data/gemfiles/Gemfile.rails-4.1-stable.lock +171 -0
- data/gemfiles/Gemfile.rails-4.2-stable +30 -0
- data/gemfiles/Gemfile.rails-4.2-stable.lock +193 -0
- data/lib/devise/controllers/helpers.rb +12 -6
- data/lib/devise/controllers/rememberable.rb +9 -2
- data/lib/devise/controllers/sign_in_out.rb +2 -8
- data/lib/devise/controllers/store_location.rb +3 -1
- data/lib/devise/controllers/url_helpers.rb +7 -9
- data/lib/devise/encryptor.rb +22 -0
- data/lib/devise/failure_app.rb +56 -14
- data/lib/devise/hooks/timeoutable.rb +5 -7
- data/lib/devise/mapping.rb +2 -1
- data/lib/devise/models/authenticatable.rb +28 -28
- data/lib/devise/models/confirmable.rb +51 -17
- data/lib/devise/models/database_authenticatable.rb +17 -11
- data/lib/devise/models/lockable.rb +7 -3
- data/lib/devise/models/recoverable.rb +23 -15
- data/lib/devise/models/rememberable.rb +56 -22
- data/lib/devise/models/timeoutable.rb +0 -6
- data/lib/devise/models/trackable.rb +1 -2
- data/lib/devise/models/validatable.rb +3 -3
- data/lib/devise/models.rb +1 -1
- data/lib/devise/rails/routes.rb +33 -27
- data/lib/devise/rails.rb +1 -1
- data/lib/devise/strategies/authenticatable.rb +8 -6
- data/lib/devise/strategies/database_authenticatable.rb +2 -1
- data/lib/devise/strategies/rememberable.rb +13 -3
- data/lib/devise/test_helpers.rb +2 -2
- data/lib/devise/version.rb +1 -1
- data/lib/devise.rb +39 -37
- data/lib/generators/active_record/devise_generator.rb +2 -1
- data/lib/generators/active_record/templates/migration.rb +1 -1
- data/lib/generators/active_record/templates/migration_existing.rb +1 -1
- data/lib/generators/devise/controllers_generator.rb +44 -0
- data/lib/generators/devise/views_generator.rb +14 -3
- data/lib/generators/templates/controllers/README +14 -0
- data/lib/generators/templates/controllers/confirmations_controller.rb +28 -0
- data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +28 -0
- data/lib/generators/templates/controllers/passwords_controller.rb +32 -0
- data/lib/generators/templates/controllers/registrations_controller.rb +60 -0
- data/lib/generators/templates/controllers/sessions_controller.rb +25 -0
- data/lib/generators/templates/controllers/unlocks_controller.rb +28 -0
- data/lib/generators/templates/devise.rb +19 -13
- data/lib/generators/templates/markerb/confirmation_instructions.markerb +1 -1
- data/lib/generators/templates/markerb/password_change.markerb +3 -0
- data/lib/generators/templates/markerb/reset_password_instructions.markerb +1 -1
- data/lib/generators/templates/markerb/unlock_instructions.markerb +1 -1
- data/lib/generators/templates/simple_form_for/passwords/edit.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 +2 -2
- data/test/controllers/custom_registrations_controller_test.rb +6 -1
- data/test/controllers/helper_methods_test.rb +21 -0
- data/test/controllers/helpers_test.rb +5 -0
- data/test/controllers/inherited_controller_i18n_messages_test.rb +51 -0
- data/test/controllers/internal_helpers_test.rb +10 -4
- data/test/controllers/load_hooks_controller_test.rb +19 -0
- data/test/controllers/passwords_controller_test.rb +1 -1
- data/test/controllers/sessions_controller_test.rb +3 -3
- data/test/controllers/url_helpers_test.rb +6 -0
- data/test/devise_test.rb +3 -3
- data/test/failure_app_test.rb +47 -0
- data/test/generators/controllers_generator_test.rb +48 -0
- data/test/generators/views_generator_test.rb +8 -1
- data/test/helpers/devise_helper_test.rb +9 -12
- data/test/integration/authenticatable_test.rb +1 -1
- data/test/integration/database_authenticatable_test.rb +11 -0
- data/test/integration/http_authenticatable_test.rb +1 -1
- data/test/integration/omniauthable_test.rb +12 -10
- data/test/integration/recoverable_test.rb +13 -0
- data/test/integration/rememberable_test.rb +50 -3
- data/test/integration/timeoutable_test.rb +13 -18
- data/test/mailers/confirmation_instructions_test.rb +1 -1
- data/test/mapping_test.rb +7 -0
- data/test/models/authenticatable_test.rb +10 -0
- data/test/models/confirmable_test.rb +99 -42
- data/test/models/database_authenticatable_test.rb +20 -0
- data/test/models/lockable_test.rb +45 -17
- data/test/models/recoverable_test.rb +62 -7
- data/test/models/rememberable_test.rb +68 -97
- data/test/models/validatable_test.rb +5 -5
- data/test/models_test.rb +15 -6
- data/test/rails_app/app/active_record/user_without_email.rb +8 -0
- data/test/rails_app/app/controllers/admins_controller.rb +0 -5
- data/test/rails_app/app/controllers/custom/registrations_controller.rb +10 -0
- data/test/rails_app/app/mailers/users/from_proc_mailer.rb +3 -0
- data/test/rails_app/app/mailers/users/mailer.rb +0 -9
- data/test/rails_app/app/mailers/users/reply_to_mailer.rb +4 -0
- data/test/rails_app/app/mongoid/user_without_email.rb +33 -0
- data/test/rails_app/config/application.rb +1 -1
- data/test/rails_app/config/environments/production.rb +6 -2
- data/test/rails_app/config/environments/test.rb +7 -2
- data/test/rails_app/config/initializers/devise.rb +12 -15
- data/test/rails_app/config/routes.rb +6 -3
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +2 -2
- data/test/rails_app/lib/shared_user.rb +1 -1
- data/test/rails_app/lib/shared_user_without_email.rb +26 -0
- data/test/rails_test.rb +9 -0
- data/test/support/helpers.rb +13 -6
- data/test/support/integration.rb +2 -2
- data/test/test_helper.rb +5 -0
- data/test/test_helpers_test.rb +22 -7
- data/test/test_models.rb +2 -2
- data/test/time_helpers.rb +137 -0
- metadata +58 -8
- data/gemfiles/Gemfile.rails-head.lock +0 -190
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.5.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- José Valim
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2016-05-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: warden
|
@@ -87,6 +87,20 @@ dependencies:
|
|
87
87
|
- - "<"
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '5'
|
90
|
+
- !ruby/object:Gem::Dependency
|
91
|
+
name: responders
|
92
|
+
requirement: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
type: :runtime
|
98
|
+
prerelease: false
|
99
|
+
version_requirements: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
90
104
|
description: Flexible authentication solution for Rails with Warden
|
91
105
|
email: contact@plataformatec.com.br
|
92
106
|
executables: []
|
@@ -97,6 +111,7 @@ files:
|
|
97
111
|
- ".travis.yml"
|
98
112
|
- ".yardopts"
|
99
113
|
- CHANGELOG.md
|
114
|
+
- CODE_OF_CONDUCT.md
|
100
115
|
- CONTRIBUTING.md
|
101
116
|
- Gemfile
|
102
117
|
- Gemfile.lock
|
@@ -114,6 +129,7 @@ files:
|
|
114
129
|
- app/mailers/devise/mailer.rb
|
115
130
|
- app/views/devise/confirmations/new.html.erb
|
116
131
|
- app/views/devise/mailer/confirmation_instructions.html.erb
|
132
|
+
- app/views/devise/mailer/password_change.html.erb
|
117
133
|
- app/views/devise/mailer/reset_password_instructions.html.erb
|
118
134
|
- app/views/devise/mailer/unlock_instructions.html.erb
|
119
135
|
- app/views/devise/passwords/edit.html.erb
|
@@ -121,7 +137,7 @@ files:
|
|
121
137
|
- app/views/devise/registrations/edit.html.erb
|
122
138
|
- app/views/devise/registrations/new.html.erb
|
123
139
|
- app/views/devise/sessions/new.html.erb
|
124
|
-
- app/views/devise/shared/_links.erb
|
140
|
+
- app/views/devise/shared/_links.html.erb
|
125
141
|
- app/views/devise/unlocks/new.html.erb
|
126
142
|
- config/locales/en.yml
|
127
143
|
- devise.gemspec
|
@@ -130,8 +146,10 @@ files:
|
|
130
146
|
- gemfiles/Gemfile.rails-3.2-stable.lock
|
131
147
|
- gemfiles/Gemfile.rails-4.0-stable
|
132
148
|
- gemfiles/Gemfile.rails-4.0-stable.lock
|
133
|
-
- gemfiles/Gemfile.rails-
|
134
|
-
- gemfiles/Gemfile.rails-
|
149
|
+
- gemfiles/Gemfile.rails-4.1-stable
|
150
|
+
- gemfiles/Gemfile.rails-4.1-stable.lock
|
151
|
+
- gemfiles/Gemfile.rails-4.2-stable
|
152
|
+
- gemfiles/Gemfile.rails-4.2-stable.lock
|
135
153
|
- lib/devise.rb
|
136
154
|
- lib/devise/controllers/helpers.rb
|
137
155
|
- lib/devise/controllers/rememberable.rb
|
@@ -140,6 +158,7 @@ files:
|
|
140
158
|
- lib/devise/controllers/store_location.rb
|
141
159
|
- lib/devise/controllers/url_helpers.rb
|
142
160
|
- lib/devise/delegator.rb
|
161
|
+
- lib/devise/encryptor.rb
|
143
162
|
- lib/devise/failure_app.rb
|
144
163
|
- lib/devise/hooks/activatable.rb
|
145
164
|
- lib/devise/hooks/csrf_cleaner.rb
|
@@ -185,14 +204,23 @@ files:
|
|
185
204
|
- lib/generators/active_record/devise_generator.rb
|
186
205
|
- lib/generators/active_record/templates/migration.rb
|
187
206
|
- lib/generators/active_record/templates/migration_existing.rb
|
207
|
+
- lib/generators/devise/controllers_generator.rb
|
188
208
|
- lib/generators/devise/devise_generator.rb
|
189
209
|
- lib/generators/devise/install_generator.rb
|
190
210
|
- lib/generators/devise/orm_helpers.rb
|
191
211
|
- lib/generators/devise/views_generator.rb
|
192
212
|
- lib/generators/mongoid/devise_generator.rb
|
193
213
|
- lib/generators/templates/README
|
214
|
+
- lib/generators/templates/controllers/README
|
215
|
+
- lib/generators/templates/controllers/confirmations_controller.rb
|
216
|
+
- lib/generators/templates/controllers/omniauth_callbacks_controller.rb
|
217
|
+
- lib/generators/templates/controllers/passwords_controller.rb
|
218
|
+
- lib/generators/templates/controllers/registrations_controller.rb
|
219
|
+
- lib/generators/templates/controllers/sessions_controller.rb
|
220
|
+
- lib/generators/templates/controllers/unlocks_controller.rb
|
194
221
|
- lib/generators/templates/devise.rb
|
195
222
|
- lib/generators/templates/markerb/confirmation_instructions.markerb
|
223
|
+
- lib/generators/templates/markerb/password_change.markerb
|
196
224
|
- lib/generators/templates/markerb/reset_password_instructions.markerb
|
197
225
|
- lib/generators/templates/markerb/unlock_instructions.markerb
|
198
226
|
- lib/generators/templates/simple_form_for/confirmations/new.html.erb
|
@@ -206,8 +234,11 @@ files:
|
|
206
234
|
- script/s3-put
|
207
235
|
- test/controllers/custom_registrations_controller_test.rb
|
208
236
|
- test/controllers/custom_strategy_test.rb
|
237
|
+
- test/controllers/helper_methods_test.rb
|
209
238
|
- test/controllers/helpers_test.rb
|
239
|
+
- test/controllers/inherited_controller_i18n_messages_test.rb
|
210
240
|
- test/controllers/internal_helpers_test.rb
|
241
|
+
- test/controllers/load_hooks_controller_test.rb
|
211
242
|
- test/controllers/passwords_controller_test.rb
|
212
243
|
- test/controllers/sessions_controller_test.rb
|
213
244
|
- test/controllers/url_helpers_test.rb
|
@@ -215,6 +246,7 @@ files:
|
|
215
246
|
- test/devise_test.rb
|
216
247
|
- test/failure_app_test.rb
|
217
248
|
- test/generators/active_record_generator_test.rb
|
249
|
+
- test/generators/controllers_generator_test.rb
|
218
250
|
- test/generators/devise_generator_test.rb
|
219
251
|
- test/generators/install_generator_test.rb
|
220
252
|
- test/generators/mongoid_generator_test.rb
|
@@ -259,6 +291,7 @@ files:
|
|
259
291
|
- test/rails_app/app/active_record/user.rb
|
260
292
|
- test/rails_app/app/active_record/user_on_engine.rb
|
261
293
|
- test/rails_app/app/active_record/user_on_main_app.rb
|
294
|
+
- test/rails_app/app/active_record/user_without_email.rb
|
262
295
|
- test/rails_app/app/controllers/admins/sessions_controller.rb
|
263
296
|
- test/rails_app/app/controllers/admins_controller.rb
|
264
297
|
- test/rails_app/app/controllers/application_controller.rb
|
@@ -270,12 +303,15 @@ files:
|
|
270
303
|
- test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb
|
271
304
|
- test/rails_app/app/controllers/users_controller.rb
|
272
305
|
- test/rails_app/app/helpers/application_helper.rb
|
306
|
+
- test/rails_app/app/mailers/users/from_proc_mailer.rb
|
273
307
|
- test/rails_app/app/mailers/users/mailer.rb
|
308
|
+
- test/rails_app/app/mailers/users/reply_to_mailer.rb
|
274
309
|
- test/rails_app/app/mongoid/admin.rb
|
275
310
|
- test/rails_app/app/mongoid/shim.rb
|
276
311
|
- test/rails_app/app/mongoid/user.rb
|
277
312
|
- test/rails_app/app/mongoid/user_on_engine.rb
|
278
313
|
- test/rails_app/app/mongoid/user_on_main_app.rb
|
314
|
+
- test/rails_app/app/mongoid/user_without_email.rb
|
279
315
|
- test/rails_app/app/views/admins/index.html.erb
|
280
316
|
- test/rails_app/app/views/admins/sessions/new.html.erb
|
281
317
|
- test/rails_app/app/views/home/admin_dashboard.html.erb
|
@@ -309,11 +345,13 @@ files:
|
|
309
345
|
- test/rails_app/db/schema.rb
|
310
346
|
- test/rails_app/lib/shared_admin.rb
|
311
347
|
- test/rails_app/lib/shared_user.rb
|
348
|
+
- test/rails_app/lib/shared_user_without_email.rb
|
312
349
|
- test/rails_app/lib/shared_user_without_omniauth.rb
|
313
350
|
- test/rails_app/public/404.html
|
314
351
|
- test/rails_app/public/422.html
|
315
352
|
- test/rails_app/public/500.html
|
316
353
|
- test/rails_app/public/favicon.ico
|
354
|
+
- test/rails_test.rb
|
317
355
|
- test/routes_test.rb
|
318
356
|
- test/support/action_controller/record_identifier.rb
|
319
357
|
- test/support/assertions.rb
|
@@ -325,6 +363,7 @@ files:
|
|
325
363
|
- test/test_helper.rb
|
326
364
|
- test/test_helpers_test.rb
|
327
365
|
- test/test_models.rb
|
366
|
+
- test/time_helpers.rb
|
328
367
|
homepage: https://github.com/plataformatec/devise
|
329
368
|
licenses:
|
330
369
|
- MIT
|
@@ -337,23 +376,26 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
337
376
|
requirements:
|
338
377
|
- - ">="
|
339
378
|
- !ruby/object:Gem::Version
|
340
|
-
version:
|
379
|
+
version: 1.9.3
|
341
380
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
342
381
|
requirements:
|
343
382
|
- - ">="
|
344
383
|
- !ruby/object:Gem::Version
|
345
384
|
version: '0'
|
346
385
|
requirements: []
|
347
|
-
rubyforge_project:
|
348
|
-
rubygems_version: 2.
|
386
|
+
rubyforge_project:
|
387
|
+
rubygems_version: 2.5.1
|
349
388
|
signing_key:
|
350
389
|
specification_version: 4
|
351
390
|
summary: Flexible authentication solution for Rails with Warden
|
352
391
|
test_files:
|
353
392
|
- test/controllers/custom_registrations_controller_test.rb
|
354
393
|
- test/controllers/custom_strategy_test.rb
|
394
|
+
- test/controllers/helper_methods_test.rb
|
355
395
|
- test/controllers/helpers_test.rb
|
396
|
+
- test/controllers/inherited_controller_i18n_messages_test.rb
|
356
397
|
- test/controllers/internal_helpers_test.rb
|
398
|
+
- test/controllers/load_hooks_controller_test.rb
|
357
399
|
- test/controllers/passwords_controller_test.rb
|
358
400
|
- test/controllers/sessions_controller_test.rb
|
359
401
|
- test/controllers/url_helpers_test.rb
|
@@ -361,6 +403,7 @@ test_files:
|
|
361
403
|
- test/devise_test.rb
|
362
404
|
- test/failure_app_test.rb
|
363
405
|
- test/generators/active_record_generator_test.rb
|
406
|
+
- test/generators/controllers_generator_test.rb
|
364
407
|
- test/generators/devise_generator_test.rb
|
365
408
|
- test/generators/install_generator_test.rb
|
366
409
|
- test/generators/mongoid_generator_test.rb
|
@@ -405,6 +448,7 @@ test_files:
|
|
405
448
|
- test/rails_app/app/active_record/user.rb
|
406
449
|
- test/rails_app/app/active_record/user_on_engine.rb
|
407
450
|
- test/rails_app/app/active_record/user_on_main_app.rb
|
451
|
+
- test/rails_app/app/active_record/user_without_email.rb
|
408
452
|
- test/rails_app/app/controllers/admins/sessions_controller.rb
|
409
453
|
- test/rails_app/app/controllers/admins_controller.rb
|
410
454
|
- test/rails_app/app/controllers/application_controller.rb
|
@@ -416,12 +460,15 @@ test_files:
|
|
416
460
|
- test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb
|
417
461
|
- test/rails_app/app/controllers/users_controller.rb
|
418
462
|
- test/rails_app/app/helpers/application_helper.rb
|
463
|
+
- test/rails_app/app/mailers/users/from_proc_mailer.rb
|
419
464
|
- test/rails_app/app/mailers/users/mailer.rb
|
465
|
+
- test/rails_app/app/mailers/users/reply_to_mailer.rb
|
420
466
|
- test/rails_app/app/mongoid/admin.rb
|
421
467
|
- test/rails_app/app/mongoid/shim.rb
|
422
468
|
- test/rails_app/app/mongoid/user.rb
|
423
469
|
- test/rails_app/app/mongoid/user_on_engine.rb
|
424
470
|
- test/rails_app/app/mongoid/user_on_main_app.rb
|
471
|
+
- test/rails_app/app/mongoid/user_without_email.rb
|
425
472
|
- test/rails_app/app/views/admins/index.html.erb
|
426
473
|
- test/rails_app/app/views/admins/sessions/new.html.erb
|
427
474
|
- test/rails_app/app/views/home/admin_dashboard.html.erb
|
@@ -455,11 +502,13 @@ test_files:
|
|
455
502
|
- test/rails_app/db/schema.rb
|
456
503
|
- test/rails_app/lib/shared_admin.rb
|
457
504
|
- test/rails_app/lib/shared_user.rb
|
505
|
+
- test/rails_app/lib/shared_user_without_email.rb
|
458
506
|
- test/rails_app/lib/shared_user_without_omniauth.rb
|
459
507
|
- test/rails_app/public/404.html
|
460
508
|
- test/rails_app/public/422.html
|
461
509
|
- test/rails_app/public/500.html
|
462
510
|
- test/rails_app/public/favicon.ico
|
511
|
+
- test/rails_test.rb
|
463
512
|
- test/routes_test.rb
|
464
513
|
- test/support/action_controller/record_identifier.rb
|
465
514
|
- test/support/assertions.rb
|
@@ -471,3 +520,4 @@ test_files:
|
|
471
520
|
- test/test_helper.rb
|
472
521
|
- test/test_helpers_test.rb
|
473
522
|
- test/test_models.rb
|
523
|
+
- test/time_helpers.rb
|
@@ -1,190 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: git://github.com/mongoid/mongoid.git
|
3
|
-
revision: 8cb17e9839973b76295cf87189e91a5ffcc03ab0
|
4
|
-
branch: master
|
5
|
-
specs:
|
6
|
-
mongoid (4.0.0)
|
7
|
-
activemodel (~> 4.0)
|
8
|
-
moped (~> 2.0.0)
|
9
|
-
origin (~> 2.1)
|
10
|
-
tzinfo (>= 0.3.37)
|
11
|
-
|
12
|
-
GIT
|
13
|
-
remote: git://github.com/rack/rack.git
|
14
|
-
revision: 92811eec6e86cb4dba52b3969c4dd66e639df158
|
15
|
-
specs:
|
16
|
-
rack (1.6.0.alpha)
|
17
|
-
|
18
|
-
GIT
|
19
|
-
remote: git://github.com/rails/arel.git
|
20
|
-
revision: 66cee768bc163537087037a583f60639eae49fc3
|
21
|
-
specs:
|
22
|
-
arel (6.0.0.20140505020427)
|
23
|
-
|
24
|
-
GIT
|
25
|
-
remote: git://github.com/rails/rails.git
|
26
|
-
revision: d5be08347fb7ff758572775ec93247a3ca886004
|
27
|
-
specs:
|
28
|
-
actionmailer (4.2.0.alpha)
|
29
|
-
actionpack (= 4.2.0.alpha)
|
30
|
-
actionview (= 4.2.0.alpha)
|
31
|
-
mail (~> 2.5, >= 2.5.4)
|
32
|
-
actionpack (4.2.0.alpha)
|
33
|
-
actionview (= 4.2.0.alpha)
|
34
|
-
activesupport (= 4.2.0.alpha)
|
35
|
-
rack (~> 1.6.0.alpha)
|
36
|
-
rack-test (~> 0.6.2)
|
37
|
-
actionview (4.2.0.alpha)
|
38
|
-
activesupport (= 4.2.0.alpha)
|
39
|
-
builder (~> 3.1)
|
40
|
-
erubis (~> 2.7.0)
|
41
|
-
activemodel (4.2.0.alpha)
|
42
|
-
activesupport (= 4.2.0.alpha)
|
43
|
-
builder (~> 3.1)
|
44
|
-
activerecord (4.2.0.alpha)
|
45
|
-
activemodel (= 4.2.0.alpha)
|
46
|
-
activesupport (= 4.2.0.alpha)
|
47
|
-
arel (~> 6.0.0)
|
48
|
-
activesupport (4.2.0.alpha)
|
49
|
-
i18n (>= 0.7.0.dev, < 0.8)
|
50
|
-
json (~> 1.7, >= 1.7.7)
|
51
|
-
minitest (~> 5.1)
|
52
|
-
thread_safe (~> 0.1)
|
53
|
-
tzinfo (~> 1.1)
|
54
|
-
rails (4.2.0.alpha)
|
55
|
-
actionmailer (= 4.2.0.alpha)
|
56
|
-
actionpack (= 4.2.0.alpha)
|
57
|
-
actionview (= 4.2.0.alpha)
|
58
|
-
activemodel (= 4.2.0.alpha)
|
59
|
-
activerecord (= 4.2.0.alpha)
|
60
|
-
activesupport (= 4.2.0.alpha)
|
61
|
-
bundler (>= 1.3.0, < 2.0)
|
62
|
-
railties (= 4.2.0.alpha)
|
63
|
-
sprockets-rails (~> 2.1)
|
64
|
-
railties (4.2.0.alpha)
|
65
|
-
actionpack (= 4.2.0.alpha)
|
66
|
-
activesupport (= 4.2.0.alpha)
|
67
|
-
rake (>= 0.8.7)
|
68
|
-
thor (>= 0.18.1, < 2.0)
|
69
|
-
|
70
|
-
GIT
|
71
|
-
remote: git://github.com/svenfuchs/i18n.git
|
72
|
-
revision: cb679b8cdbab675703a3f88de4d48a48f7b50e06
|
73
|
-
specs:
|
74
|
-
i18n (0.7.0.dev)
|
75
|
-
|
76
|
-
PATH
|
77
|
-
remote: ..
|
78
|
-
specs:
|
79
|
-
devise (3.3.0)
|
80
|
-
bcrypt (~> 3.0)
|
81
|
-
orm_adapter (~> 0.1)
|
82
|
-
railties (>= 3.2.6, < 5)
|
83
|
-
thread_safe (~> 0.1)
|
84
|
-
warden (~> 1.2.3)
|
85
|
-
|
86
|
-
GEM
|
87
|
-
remote: https://rubygems.org/
|
88
|
-
specs:
|
89
|
-
bcrypt (3.1.7)
|
90
|
-
bson (2.3.0)
|
91
|
-
builder (3.2.2)
|
92
|
-
connection_pool (2.0.0)
|
93
|
-
erubis (2.7.0)
|
94
|
-
faraday (0.9.0)
|
95
|
-
multipart-post (>= 1.2, < 3)
|
96
|
-
hashie (3.2.0)
|
97
|
-
hike (1.2.3)
|
98
|
-
json (1.8.1)
|
99
|
-
jwt (1.0.0)
|
100
|
-
mail (2.6.1)
|
101
|
-
mime-types (>= 1.16, < 3)
|
102
|
-
metaclass (0.0.4)
|
103
|
-
mime-types (2.3)
|
104
|
-
mini_portile (0.6.0)
|
105
|
-
minitest (5.4.0)
|
106
|
-
mocha (1.1.0)
|
107
|
-
metaclass (~> 0.0.1)
|
108
|
-
moped (2.0.0)
|
109
|
-
bson (~> 2.2)
|
110
|
-
connection_pool (~> 2.0)
|
111
|
-
optionable (~> 0.2.0)
|
112
|
-
multi_json (1.10.1)
|
113
|
-
multi_xml (0.5.5)
|
114
|
-
multipart-post (2.0.0)
|
115
|
-
nokogiri (1.6.3.1)
|
116
|
-
mini_portile (= 0.6.0)
|
117
|
-
oauth2 (0.9.4)
|
118
|
-
faraday (>= 0.8, < 0.10)
|
119
|
-
jwt (~> 1.0)
|
120
|
-
multi_json (~> 1.3)
|
121
|
-
multi_xml (~> 0.5)
|
122
|
-
rack (~> 1.2)
|
123
|
-
omniauth (1.2.2)
|
124
|
-
hashie (>= 1.2, < 4)
|
125
|
-
rack (~> 1.0)
|
126
|
-
omniauth-facebook (1.6.0)
|
127
|
-
omniauth-oauth2 (~> 1.1)
|
128
|
-
omniauth-oauth2 (1.1.2)
|
129
|
-
faraday (>= 0.8, < 0.10)
|
130
|
-
multi_json (~> 1.3)
|
131
|
-
oauth2 (~> 0.9.3)
|
132
|
-
omniauth (~> 1.2)
|
133
|
-
omniauth-openid (1.0.1)
|
134
|
-
omniauth (~> 1.0)
|
135
|
-
rack-openid (~> 1.3.1)
|
136
|
-
optionable (0.2.0)
|
137
|
-
origin (2.1.1)
|
138
|
-
orm_adapter (0.5.0)
|
139
|
-
rack-openid (1.3.1)
|
140
|
-
rack (>= 1.1.0)
|
141
|
-
ruby-openid (>= 2.1.8)
|
142
|
-
rack-test (0.6.2)
|
143
|
-
rack (>= 1.0)
|
144
|
-
rake (10.3.2)
|
145
|
-
rdoc (4.1.1)
|
146
|
-
json (~> 1.4)
|
147
|
-
ruby-openid (2.5.0)
|
148
|
-
sprockets (2.12.1)
|
149
|
-
hike (~> 1.2)
|
150
|
-
multi_json (~> 1.0)
|
151
|
-
rack (~> 1.0)
|
152
|
-
tilt (~> 1.1, != 1.3.0)
|
153
|
-
sprockets-rails (2.1.3)
|
154
|
-
actionpack (>= 3.0)
|
155
|
-
activesupport (>= 3.0)
|
156
|
-
sprockets (~> 2.8)
|
157
|
-
sqlite3 (1.3.9)
|
158
|
-
thor (0.19.1)
|
159
|
-
thread_safe (0.3.4)
|
160
|
-
tilt (1.4.1)
|
161
|
-
tzinfo (1.2.1)
|
162
|
-
thread_safe (~> 0.1)
|
163
|
-
warden (1.2.3)
|
164
|
-
rack (>= 1.0)
|
165
|
-
webrat (0.7.3)
|
166
|
-
nokogiri (>= 1.2.0)
|
167
|
-
rack (>= 1.0)
|
168
|
-
rack-test (>= 0.5.3)
|
169
|
-
|
170
|
-
PLATFORMS
|
171
|
-
ruby
|
172
|
-
|
173
|
-
DEPENDENCIES
|
174
|
-
activerecord-jdbc-adapter
|
175
|
-
activerecord-jdbcsqlite3-adapter
|
176
|
-
arel!
|
177
|
-
devise!
|
178
|
-
i18n!
|
179
|
-
jruby-openssl
|
180
|
-
mocha (~> 1.1)
|
181
|
-
mongoid!
|
182
|
-
omniauth (~> 1.2.0)
|
183
|
-
omniauth-facebook
|
184
|
-
omniauth-oauth2 (~> 1.1.0)
|
185
|
-
omniauth-openid (~> 1.0.1)
|
186
|
-
rack!
|
187
|
-
rails!
|
188
|
-
rdoc
|
189
|
-
sqlite3
|
190
|
-
webrat (= 0.7.3)
|