mongo_session_store-rails5 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.bundle/install.log +768 -0
- data/.gitignore +10 -0
- data/.rspec +1 -0
- data/.travis.yml +21 -0
- data/Gemfile +67 -0
- data/README.md +133 -0
- data/Rakefile +93 -0
- data/lib/mongo_session_store-rails3.rb +1 -0
- data/lib/mongo_session_store-rails4.rb +1 -0
- data/lib/mongo_session_store-rails5.rb +1 -0
- data/lib/mongo_session_store.rb +49 -0
- data/lib/mongo_session_store/mongo_mapper_store.rb +22 -0
- data/lib/mongo_session_store/mongo_store.rb +83 -0
- data/lib/mongo_session_store/mongo_store_base.rb +98 -0
- data/lib/mongo_session_store/mongoid_store.rb +57 -0
- data/lib/mongo_session_store/version.rb +3 -0
- data/mongo_session_store-rails3.gemspec +18 -0
- data/mongo_session_store-rails4.gemspec +18 -0
- data/mongo_session_store-rails5.gemspec +20 -0
- data/perf/benchmark.rb +92 -0
- data/release.sh +6 -0
- data/spec/integration_with_devise_spec.rb +89 -0
- data/spec/mongo_store_base_spec.rb +42 -0
- data/spec/rails_3.1_app/.gitignore +5 -0
- data/spec/rails_3.1_app/README +261 -0
- data/spec/rails_3.1_app/Rakefile +7 -0
- data/spec/rails_3.1_app/app/assets/javascripts/application.js +7 -0
- data/spec/rails_3.1_app/app/assets/stylesheets/application.css +7 -0
- data/spec/rails_3.1_app/app/controllers/application_controller.rb +3 -0
- data/spec/rails_3.1_app/app/controllers/home_controller.rb +4 -0
- data/spec/rails_3.1_app/app/helpers/application_helper.rb +2 -0
- data/spec/rails_3.1_app/app/mailers/.gitkeep +0 -0
- data/spec/rails_3.1_app/app/models/.gitkeep +0 -0
- data/spec/rails_3.1_app/app/models/user.rb +6 -0
- data/spec/rails_3.1_app/app/views/devise/confirmations/new.html.erb +12 -0
- data/spec/rails_3.1_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/spec/rails_3.1_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/spec/rails_3.1_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/spec/rails_3.1_app/app/views/devise/passwords/edit.html.erb +16 -0
- data/spec/rails_3.1_app/app/views/devise/passwords/new.html.erb +12 -0
- data/spec/rails_3.1_app/app/views/devise/registrations/edit.html.erb +25 -0
- data/spec/rails_3.1_app/app/views/devise/registrations/new.html.erb +18 -0
- data/spec/rails_3.1_app/app/views/devise/sessions/new.html.erb +17 -0
- data/spec/rails_3.1_app/app/views/devise/shared/_links.erb +25 -0
- data/spec/rails_3.1_app/app/views/devise/unlocks/new.html.erb +12 -0
- data/spec/rails_3.1_app/app/views/home/index.html.erb +10 -0
- data/spec/rails_3.1_app/app/views/layouts/application.html.erb +15 -0
- data/spec/rails_3.1_app/config.ru +4 -0
- data/spec/rails_3.1_app/config/application.rb +47 -0
- data/spec/rails_3.1_app/config/boot.rb +6 -0
- data/spec/rails_3.1_app/config/database.yml +11 -0
- data/spec/rails_3.1_app/config/environment.rb +5 -0
- data/spec/rails_3.1_app/config/environments/development.rb +27 -0
- data/spec/rails_3.1_app/config/environments/production.rb +54 -0
- data/spec/rails_3.1_app/config/environments/test.rb +39 -0
- data/spec/rails_3.1_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails_3.1_app/config/initializers/devise.rb +201 -0
- data/spec/rails_3.1_app/config/initializers/inflections.rb +10 -0
- data/spec/rails_3.1_app/config/initializers/mime_types.rb +5 -0
- data/spec/rails_3.1_app/config/initializers/secret_token.rb +7 -0
- data/spec/rails_3.1_app/config/initializers/session_store.rb +9 -0
- data/spec/rails_3.1_app/config/initializers/wrap_parameters.rb +12 -0
- data/spec/rails_3.1_app/config/locales/devise.en.yml +55 -0
- data/spec/rails_3.1_app/config/locales/en.yml +5 -0
- data/spec/rails_3.1_app/config/mongo.yml +18 -0
- data/spec/rails_3.1_app/config/mongoid.yml +13 -0
- data/spec/rails_3.1_app/config/routes.rb +4 -0
- data/spec/rails_3.1_app/db/migrate/20120222195914_create_users_table.rb +12 -0
- data/spec/rails_3.1_app/db/schema.rb +20 -0
- data/spec/rails_3.1_app/lib/tasks/.gitkeep +0 -0
- data/spec/rails_3.1_app/log/.gitkeep +0 -0
- data/spec/rails_3.1_app/public/404.html +26 -0
- data/spec/rails_3.1_app/public/422.html +26 -0
- data/spec/rails_3.1_app/public/500.html +26 -0
- data/spec/rails_3.1_app/public/favicon.ico +0 -0
- data/spec/rails_3.1_app/public/robots.txt +5 -0
- data/spec/rails_3.1_app/script/rails +6 -0
- data/spec/rails_3.1_app/vendor/assets/stylesheets/.gitkeep +0 -0
- data/spec/rails_3.1_app/vendor/plugins/.gitkeep +0 -0
- data/spec/rails_3.2_app/.gitignore +5 -0
- data/spec/rails_3.2_app/README +261 -0
- data/spec/rails_3.2_app/Rakefile +7 -0
- data/spec/rails_3.2_app/app/assets/javascripts/application.js +7 -0
- data/spec/rails_3.2_app/app/assets/stylesheets/application.css +7 -0
- data/spec/rails_3.2_app/app/controllers/application_controller.rb +3 -0
- data/spec/rails_3.2_app/app/controllers/home_controller.rb +4 -0
- data/spec/rails_3.2_app/app/helpers/application_helper.rb +2 -0
- data/spec/rails_3.2_app/app/mailers/.gitkeep +0 -0
- data/spec/rails_3.2_app/app/models/.gitkeep +0 -0
- data/spec/rails_3.2_app/app/models/user.rb +6 -0
- data/spec/rails_3.2_app/app/views/devise/confirmations/new.html.erb +12 -0
- data/spec/rails_3.2_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/spec/rails_3.2_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/spec/rails_3.2_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/spec/rails_3.2_app/app/views/devise/passwords/edit.html.erb +16 -0
- data/spec/rails_3.2_app/app/views/devise/passwords/new.html.erb +12 -0
- data/spec/rails_3.2_app/app/views/devise/registrations/edit.html.erb +25 -0
- data/spec/rails_3.2_app/app/views/devise/registrations/new.html.erb +18 -0
- data/spec/rails_3.2_app/app/views/devise/sessions/new.html.erb +17 -0
- data/spec/rails_3.2_app/app/views/devise/shared/_links.erb +25 -0
- data/spec/rails_3.2_app/app/views/devise/unlocks/new.html.erb +12 -0
- data/spec/rails_3.2_app/app/views/home/index.html.erb +10 -0
- data/spec/rails_3.2_app/app/views/layouts/application.html.erb +15 -0
- data/spec/rails_3.2_app/config.ru +4 -0
- data/spec/rails_3.2_app/config/application.rb +47 -0
- data/spec/rails_3.2_app/config/boot.rb +6 -0
- data/spec/rails_3.2_app/config/database.yml +11 -0
- data/spec/rails_3.2_app/config/environment.rb +5 -0
- data/spec/rails_3.2_app/config/environments/development.rb +27 -0
- data/spec/rails_3.2_app/config/environments/production.rb +54 -0
- data/spec/rails_3.2_app/config/environments/test.rb +39 -0
- data/spec/rails_3.2_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails_3.2_app/config/initializers/devise.rb +203 -0
- data/spec/rails_3.2_app/config/initializers/inflections.rb +10 -0
- data/spec/rails_3.2_app/config/initializers/mime_types.rb +5 -0
- data/spec/rails_3.2_app/config/initializers/secret_token.rb +7 -0
- data/spec/rails_3.2_app/config/initializers/session_store.rb +9 -0
- data/spec/rails_3.2_app/config/initializers/wrap_parameters.rb +12 -0
- data/spec/rails_3.2_app/config/locales/devise.en.yml +55 -0
- data/spec/rails_3.2_app/config/locales/en.yml +5 -0
- data/spec/rails_3.2_app/config/mongo.yml +18 -0
- data/spec/rails_3.2_app/config/mongoid.yml +13 -0
- data/spec/rails_3.2_app/config/routes.rb +4 -0
- data/spec/rails_3.2_app/db/migrate/20120222195914_create_users_table.rb +12 -0
- data/spec/rails_3.2_app/db/schema.rb +20 -0
- data/spec/rails_3.2_app/lib/tasks/.gitkeep +0 -0
- data/spec/rails_3.2_app/log/.gitkeep +0 -0
- data/spec/rails_3.2_app/public/404.html +26 -0
- data/spec/rails_3.2_app/public/422.html +26 -0
- data/spec/rails_3.2_app/public/500.html +26 -0
- data/spec/rails_3.2_app/public/favicon.ico +0 -0
- data/spec/rails_3.2_app/public/robots.txt +5 -0
- data/spec/rails_3.2_app/script/rails +6 -0
- data/spec/rails_3.2_app/vendor/assets/stylesheets/.gitkeep +0 -0
- data/spec/rails_3.2_app/vendor/plugins/.gitkeep +0 -0
- data/spec/rails_4.0_app/.gitignore +16 -0
- data/spec/rails_4.0_app/Rakefile +6 -0
- data/spec/rails_4.0_app/app/assets/images/.keep +0 -0
- data/spec/rails_4.0_app/app/assets/javascripts/application.js +13 -0
- data/spec/rails_4.0_app/app/assets/stylesheets/application.css +13 -0
- data/spec/rails_4.0_app/app/controllers/application_controller.rb +5 -0
- data/spec/rails_4.0_app/app/controllers/concerns/.keep +0 -0
- data/spec/rails_4.0_app/app/controllers/home_controller.rb +4 -0
- data/spec/rails_4.0_app/app/helpers/application_helper.rb +2 -0
- data/spec/rails_4.0_app/app/mailers/.keep +0 -0
- data/spec/rails_4.0_app/app/models/.keep +0 -0
- data/spec/rails_4.0_app/app/models/concerns/.keep +0 -0
- data/spec/rails_4.0_app/app/models/user.rb +5 -0
- data/spec/rails_4.0_app/app/views/devise/confirmations/new.html.erb +12 -0
- data/spec/rails_4.0_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/spec/rails_4.0_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/spec/rails_4.0_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/spec/rails_4.0_app/app/views/devise/passwords/edit.html.erb +16 -0
- data/spec/rails_4.0_app/app/views/devise/passwords/new.html.erb +12 -0
- data/spec/rails_4.0_app/app/views/devise/registrations/edit.html.erb +29 -0
- data/spec/rails_4.0_app/app/views/devise/registrations/new.html.erb +18 -0
- data/spec/rails_4.0_app/app/views/devise/sessions/new.html.erb +17 -0
- data/spec/rails_4.0_app/app/views/devise/shared/_links.erb +25 -0
- data/spec/rails_4.0_app/app/views/devise/unlocks/new.html.erb +12 -0
- data/spec/rails_4.0_app/app/views/home/index.html.erb +10 -0
- data/spec/rails_4.0_app/app/views/layouts/application.html.erb +17 -0
- data/spec/rails_4.0_app/bin/bundle +3 -0
- data/spec/rails_4.0_app/bin/rails +4 -0
- data/spec/rails_4.0_app/bin/rake +4 -0
- data/spec/rails_4.0_app/config.ru +4 -0
- data/spec/rails_4.0_app/config/application.rb +26 -0
- data/spec/rails_4.0_app/config/boot.rb +4 -0
- data/spec/rails_4.0_app/config/database.yml +11 -0
- data/spec/rails_4.0_app/config/environment.rb +5 -0
- data/spec/rails_4.0_app/config/environments/development.rb +29 -0
- data/spec/rails_4.0_app/config/environments/production.rb +80 -0
- data/spec/rails_4.0_app/config/environments/test.rb +36 -0
- data/spec/rails_4.0_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails_4.0_app/config/initializers/devise.rb +254 -0
- data/spec/rails_4.0_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/rails_4.0_app/config/initializers/inflections.rb +16 -0
- data/spec/rails_4.0_app/config/initializers/mime_types.rb +5 -0
- data/spec/rails_4.0_app/config/initializers/secret_token.rb +12 -0
- data/spec/rails_4.0_app/config/initializers/session_store.rb +5 -0
- data/spec/rails_4.0_app/config/initializers/wrap_parameters.rb +14 -0
- data/spec/rails_4.0_app/config/locales/devise.en.yml +59 -0
- data/spec/rails_4.0_app/config/locales/en.yml +23 -0
- data/spec/rails_4.0_app/config/mongo.yml +11 -0
- data/spec/rails_4.0_app/config/mongoid.yml +13 -0
- data/spec/rails_4.0_app/config/routes.rb +4 -0
- data/spec/rails_4.0_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
- data/spec/rails_4.0_app/db/schema.rb +25 -0
- data/spec/rails_4.0_app/db/seeds.rb +7 -0
- data/spec/rails_4.0_app/lib/assets/.keep +0 -0
- data/spec/rails_4.0_app/lib/tasks/.keep +0 -0
- data/spec/rails_4.0_app/log/.keep +0 -0
- data/spec/rails_4.0_app/public/404.html +58 -0
- data/spec/rails_4.0_app/public/422.html +58 -0
- data/spec/rails_4.0_app/public/500.html +57 -0
- data/spec/rails_4.0_app/public/favicon.ico +0 -0
- data/spec/rails_4.0_app/public/robots.txt +5 -0
- data/spec/rails_4.1_app/.gitignore +16 -0
- data/spec/rails_4.1_app/Rakefile +6 -0
- data/spec/rails_4.1_app/app/assets/images/.keep +0 -0
- data/spec/rails_4.1_app/app/assets/javascripts/application.js +13 -0
- data/spec/rails_4.1_app/app/assets/stylesheets/application.css +15 -0
- data/spec/rails_4.1_app/app/controllers/application_controller.rb +5 -0
- data/spec/rails_4.1_app/app/controllers/concerns/.keep +0 -0
- data/spec/rails_4.1_app/app/controllers/home_controller.rb +4 -0
- data/spec/rails_4.1_app/app/helpers/application_helper.rb +2 -0
- data/spec/rails_4.1_app/app/mailers/.keep +0 -0
- data/spec/rails_4.1_app/app/models/.keep +0 -0
- data/spec/rails_4.1_app/app/models/concerns/.keep +0 -0
- data/spec/rails_4.1_app/app/models/user.rb +5 -0
- data/spec/rails_4.1_app/app/views/devise/confirmations/new.html.erb +12 -0
- data/spec/rails_4.1_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/spec/rails_4.1_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/spec/rails_4.1_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/spec/rails_4.1_app/app/views/devise/passwords/edit.html.erb +16 -0
- data/spec/rails_4.1_app/app/views/devise/passwords/new.html.erb +12 -0
- data/spec/rails_4.1_app/app/views/devise/registrations/edit.html.erb +29 -0
- data/spec/rails_4.1_app/app/views/devise/registrations/new.html.erb +18 -0
- data/spec/rails_4.1_app/app/views/devise/sessions/new.html.erb +17 -0
- data/spec/rails_4.1_app/app/views/devise/shared/_links.erb +25 -0
- data/spec/rails_4.1_app/app/views/devise/unlocks/new.html.erb +12 -0
- data/spec/rails_4.1_app/app/views/home/index.html.erb +10 -0
- data/spec/rails_4.1_app/app/views/layouts/application.html.erb +17 -0
- data/spec/rails_4.1_app/bin/bundle +3 -0
- data/spec/rails_4.1_app/bin/rails +8 -0
- data/spec/rails_4.1_app/bin/rake +8 -0
- data/spec/rails_4.1_app/bin/spring +18 -0
- data/spec/rails_4.1_app/config.ru +4 -0
- data/spec/rails_4.1_app/config/application.rb +23 -0
- data/spec/rails_4.1_app/config/boot.rb +4 -0
- data/spec/rails_4.1_app/config/database.yml +11 -0
- data/spec/rails_4.1_app/config/environment.rb +5 -0
- data/spec/rails_4.1_app/config/environments/development.rb +37 -0
- data/spec/rails_4.1_app/config/environments/production.rb +83 -0
- data/spec/rails_4.1_app/config/environments/test.rb +39 -0
- data/spec/rails_4.1_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails_4.1_app/config/initializers/cookies_serializer.rb +3 -0
- data/spec/rails_4.1_app/config/initializers/devise.rb +254 -0
- data/spec/rails_4.1_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/rails_4.1_app/config/initializers/inflections.rb +16 -0
- data/spec/rails_4.1_app/config/initializers/mime_types.rb +5 -0
- data/spec/rails_4.1_app/config/initializers/session_store.rb +5 -0
- data/spec/rails_4.1_app/config/initializers/wrap_parameters.rb +14 -0
- data/spec/rails_4.1_app/config/locales/devise.en.yml +59 -0
- data/spec/rails_4.1_app/config/locales/en.yml +23 -0
- data/spec/rails_4.1_app/config/mongo.yml +11 -0
- data/spec/rails_4.1_app/config/mongoid.yml +13 -0
- data/spec/rails_4.1_app/config/routes.rb +4 -0
- data/spec/rails_4.1_app/config/secrets.yml +22 -0
- data/spec/rails_4.1_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
- data/spec/rails_4.1_app/db/schema.rb +25 -0
- data/spec/rails_4.1_app/db/seeds.rb +7 -0
- data/spec/rails_4.1_app/lib/assets/.keep +0 -0
- data/spec/rails_4.1_app/lib/tasks/.keep +0 -0
- data/spec/rails_4.1_app/log/.keep +0 -0
- data/spec/rails_4.1_app/public/404.html +67 -0
- data/spec/rails_4.1_app/public/422.html +67 -0
- data/spec/rails_4.1_app/public/500.html +66 -0
- data/spec/rails_4.1_app/public/favicon.ico +0 -0
- data/spec/rails_4.1_app/public/robots.txt +5 -0
- data/spec/rails_4.2_app/.gitignore +17 -0
- data/spec/rails_4.2_app/Rakefile +6 -0
- data/spec/rails_4.2_app/app/assets/images/.keep +0 -0
- data/spec/rails_4.2_app/app/assets/javascripts/application.js +13 -0
- data/spec/rails_4.2_app/app/assets/stylesheets/application.css +15 -0
- data/spec/rails_4.2_app/app/controllers/application_controller.rb +5 -0
- data/spec/rails_4.2_app/app/controllers/concerns/.keep +0 -0
- data/spec/rails_4.2_app/app/controllers/home_controller.rb +4 -0
- data/spec/rails_4.2_app/app/helpers/application_helper.rb +2 -0
- data/spec/rails_4.2_app/app/mailers/.keep +0 -0
- data/spec/rails_4.2_app/app/models/.keep +0 -0
- data/spec/rails_4.2_app/app/models/concerns/.keep +0 -0
- data/spec/rails_4.2_app/app/models/user.rb +5 -0
- data/spec/rails_4.2_app/app/views/devise/confirmations/new.html.erb +12 -0
- data/spec/rails_4.2_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/spec/rails_4.2_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/spec/rails_4.2_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/spec/rails_4.2_app/app/views/devise/passwords/edit.html.erb +16 -0
- data/spec/rails_4.2_app/app/views/devise/passwords/new.html.erb +12 -0
- data/spec/rails_4.2_app/app/views/devise/registrations/edit.html.erb +29 -0
- data/spec/rails_4.2_app/app/views/devise/registrations/new.html.erb +18 -0
- data/spec/rails_4.2_app/app/views/devise/sessions/new.html.erb +17 -0
- data/spec/rails_4.2_app/app/views/devise/shared/_links.erb +25 -0
- data/spec/rails_4.2_app/app/views/devise/unlocks/new.html.erb +12 -0
- data/spec/rails_4.2_app/app/views/home/index.html.erb +10 -0
- data/spec/rails_4.2_app/app/views/layouts/application.html.erb +17 -0
- data/spec/rails_4.2_app/bin/bundle +3 -0
- data/spec/rails_4.2_app/bin/rails +8 -0
- data/spec/rails_4.2_app/bin/rake +8 -0
- data/spec/rails_4.2_app/bin/setup +29 -0
- data/spec/rails_4.2_app/bin/spring +15 -0
- data/spec/rails_4.2_app/config.ru +4 -0
- data/spec/rails_4.2_app/config/application.rb +26 -0
- data/spec/rails_4.2_app/config/boot.rb +3 -0
- data/spec/rails_4.2_app/config/database.yml +11 -0
- data/spec/rails_4.2_app/config/environment.rb +5 -0
- data/spec/rails_4.2_app/config/environments/development.rb +41 -0
- data/spec/rails_4.2_app/config/environments/production.rb +79 -0
- data/spec/rails_4.2_app/config/environments/test.rb +42 -0
- data/spec/rails_4.2_app/config/initializers/assets.rb +11 -0
- data/spec/rails_4.2_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails_4.2_app/config/initializers/cookies_serializer.rb +3 -0
- data/spec/rails_4.2_app/config/initializers/devise.rb +254 -0
- data/spec/rails_4.2_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/rails_4.2_app/config/initializers/inflections.rb +16 -0
- data/spec/rails_4.2_app/config/initializers/mime_types.rb +4 -0
- data/spec/rails_4.2_app/config/initializers/session_store.rb +5 -0
- data/spec/rails_4.2_app/config/initializers/wrap_parameters.rb +14 -0
- data/spec/rails_4.2_app/config/locales/en.yml +23 -0
- data/spec/rails_4.2_app/config/mongo.yml +11 -0
- data/spec/rails_4.2_app/config/mongoid.yml +13 -0
- data/spec/rails_4.2_app/config/routes.rb +4 -0
- data/spec/rails_4.2_app/config/secrets.yml +22 -0
- data/spec/rails_4.2_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
- data/spec/rails_4.2_app/db/schema.rb +25 -0
- data/spec/rails_4.2_app/db/seeds.rb +7 -0
- data/spec/rails_4.2_app/lib/assets/.keep +0 -0
- data/spec/rails_4.2_app/lib/tasks/.keep +0 -0
- data/spec/rails_4.2_app/log/.keep +0 -0
- data/spec/rails_4.2_app/public/404.html +67 -0
- data/spec/rails_4.2_app/public/422.html +67 -0
- data/spec/rails_4.2_app/public/500.html +66 -0
- data/spec/rails_4.2_app/public/favicon.ico +0 -0
- data/spec/rails_4.2_app/public/robots.txt +5 -0
- data/spec/rails_helper.rb +47 -0
- data/spec/spec_helper.rb +5 -0
- metadata +409 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
class AddDeviseUsers < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table(:users) do |t|
|
4
|
+
t.string :email, :null => false, :default => ""
|
5
|
+
t.string :encrypted_password, :null => false, :default => ""
|
6
|
+
t.timestamps
|
7
|
+
end
|
8
|
+
|
9
|
+
add_index :users, :email, :unique => true
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 20140301171212) do
|
15
|
+
|
16
|
+
create_table "users", force: true do |t|
|
17
|
+
t.string "email", default: "", null: false
|
18
|
+
t.string "encrypted_password", default: "", null: false
|
19
|
+
t.datetime "created_at"
|
20
|
+
t.datetime "updated_at"
|
21
|
+
end
|
22
|
+
|
23
|
+
add_index "users", ["email"], name: "index_users_on_email", unique: true
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
3
|
+
#
|
4
|
+
# Examples:
|
5
|
+
#
|
6
|
+
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
7
|
+
# Mayor.create(name: 'Emanuel', city: cities.first)
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/404.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/422.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'rails'
|
3
|
+
|
4
|
+
rails_version = Rails.version[/^\d\.\d/]
|
5
|
+
require "rails_#{rails_version}_app/config/environment"
|
6
|
+
|
7
|
+
require 'rspec/rails'
|
8
|
+
|
9
|
+
def db
|
10
|
+
if defined?(Mongoid)
|
11
|
+
MongoidStore::Session.mongo_session
|
12
|
+
elsif defined?(MongoMapper)
|
13
|
+
MongoMapper.database
|
14
|
+
elsif defined?(Mongo)
|
15
|
+
Mongo::Client.new(['127.0.0.1:27017'], database: database_name).database
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def database_name
|
20
|
+
Rails.application.class.to_s.underscore.sub(/\/.*/, '') + "_" + Rails.env
|
21
|
+
end
|
22
|
+
|
23
|
+
def drop_collections_in(database)
|
24
|
+
database.collections.select { |c| c.name !~ /^system/ }.each(&:drop)
|
25
|
+
end
|
26
|
+
|
27
|
+
RSpec.configure do |config|
|
28
|
+
config.before :all do
|
29
|
+
unless User.table_exists?
|
30
|
+
load Rails.root.join('db', 'schema.rb')
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
config.before :each do
|
35
|
+
drop_collections_in(db)
|
36
|
+
User.delete_all
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
puts "Testing #{ENV["MONGO_SESSION_STORE_ORM"]}_store on Rails #{Rails.version}..."
|
41
|
+
|
42
|
+
case ENV["MONGO_SESSION_STORE_ORM"]
|
43
|
+
when "mongo_mapper"
|
44
|
+
puts "MongoMapper version: #{MongoMapper::Version}"
|
45
|
+
when "mongoid"
|
46
|
+
puts "Mongoid version: #{Mongoid::VERSION}"
|
47
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,409 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mongo_session_store-rails5
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 7.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alexander Kiseliev
|
8
|
+
- Brian Hempel
|
9
|
+
- Nicolas Mérouze
|
10
|
+
- Tony Pitale
|
11
|
+
- Chris Brickley
|
12
|
+
autorequire:
|
13
|
+
bindir: bin
|
14
|
+
cert_chain: []
|
15
|
+
date: 2016-09-29 00:00:00.000000000 Z
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
18
|
+
name: actionpack
|
19
|
+
requirement: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '3.1'
|
24
|
+
type: :runtime
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: '3.1'
|
31
|
+
- !ruby/object:Gem::Dependency
|
32
|
+
name: rails
|
33
|
+
requirement: !ruby/object:Gem::Requirement
|
34
|
+
requirements:
|
35
|
+
- - ">="
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '5.0'
|
38
|
+
- - "<"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '6.0'
|
41
|
+
type: :runtime
|
42
|
+
prerelease: false
|
43
|
+
version_requirements: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '5.0'
|
48
|
+
- - "<"
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '6.0'
|
51
|
+
description:
|
52
|
+
email:
|
53
|
+
- i43ack@gmail.com
|
54
|
+
- plasticchicken@gmail.com
|
55
|
+
executables: []
|
56
|
+
extensions: []
|
57
|
+
extra_rdoc_files: []
|
58
|
+
files:
|
59
|
+
- ".bundle/install.log"
|
60
|
+
- ".gitignore"
|
61
|
+
- ".rspec"
|
62
|
+
- ".travis.yml"
|
63
|
+
- Gemfile
|
64
|
+
- README.md
|
65
|
+
- Rakefile
|
66
|
+
- lib/mongo_session_store-rails3.rb
|
67
|
+
- lib/mongo_session_store-rails4.rb
|
68
|
+
- lib/mongo_session_store-rails5.rb
|
69
|
+
- lib/mongo_session_store.rb
|
70
|
+
- lib/mongo_session_store/mongo_mapper_store.rb
|
71
|
+
- lib/mongo_session_store/mongo_store.rb
|
72
|
+
- lib/mongo_session_store/mongo_store_base.rb
|
73
|
+
- lib/mongo_session_store/mongoid_store.rb
|
74
|
+
- lib/mongo_session_store/version.rb
|
75
|
+
- mongo_session_store-rails3.gemspec
|
76
|
+
- mongo_session_store-rails4.gemspec
|
77
|
+
- mongo_session_store-rails5.gemspec
|
78
|
+
- perf/benchmark.rb
|
79
|
+
- release.sh
|
80
|
+
- spec/integration_with_devise_spec.rb
|
81
|
+
- spec/mongo_store_base_spec.rb
|
82
|
+
- spec/rails_3.1_app/.gitignore
|
83
|
+
- spec/rails_3.1_app/README
|
84
|
+
- spec/rails_3.1_app/Rakefile
|
85
|
+
- spec/rails_3.1_app/app/assets/javascripts/application.js
|
86
|
+
- spec/rails_3.1_app/app/assets/stylesheets/application.css
|
87
|
+
- spec/rails_3.1_app/app/controllers/application_controller.rb
|
88
|
+
- spec/rails_3.1_app/app/controllers/home_controller.rb
|
89
|
+
- spec/rails_3.1_app/app/helpers/application_helper.rb
|
90
|
+
- spec/rails_3.1_app/app/mailers/.gitkeep
|
91
|
+
- spec/rails_3.1_app/app/models/.gitkeep
|
92
|
+
- spec/rails_3.1_app/app/models/user.rb
|
93
|
+
- spec/rails_3.1_app/app/views/devise/confirmations/new.html.erb
|
94
|
+
- spec/rails_3.1_app/app/views/devise/mailer/confirmation_instructions.html.erb
|
95
|
+
- spec/rails_3.1_app/app/views/devise/mailer/reset_password_instructions.html.erb
|
96
|
+
- spec/rails_3.1_app/app/views/devise/mailer/unlock_instructions.html.erb
|
97
|
+
- spec/rails_3.1_app/app/views/devise/passwords/edit.html.erb
|
98
|
+
- spec/rails_3.1_app/app/views/devise/passwords/new.html.erb
|
99
|
+
- spec/rails_3.1_app/app/views/devise/registrations/edit.html.erb
|
100
|
+
- spec/rails_3.1_app/app/views/devise/registrations/new.html.erb
|
101
|
+
- spec/rails_3.1_app/app/views/devise/sessions/new.html.erb
|
102
|
+
- spec/rails_3.1_app/app/views/devise/shared/_links.erb
|
103
|
+
- spec/rails_3.1_app/app/views/devise/unlocks/new.html.erb
|
104
|
+
- spec/rails_3.1_app/app/views/home/index.html.erb
|
105
|
+
- spec/rails_3.1_app/app/views/layouts/application.html.erb
|
106
|
+
- spec/rails_3.1_app/config.ru
|
107
|
+
- spec/rails_3.1_app/config/application.rb
|
108
|
+
- spec/rails_3.1_app/config/boot.rb
|
109
|
+
- spec/rails_3.1_app/config/database.yml
|
110
|
+
- spec/rails_3.1_app/config/environment.rb
|
111
|
+
- spec/rails_3.1_app/config/environments/development.rb
|
112
|
+
- spec/rails_3.1_app/config/environments/production.rb
|
113
|
+
- spec/rails_3.1_app/config/environments/test.rb
|
114
|
+
- spec/rails_3.1_app/config/initializers/backtrace_silencers.rb
|
115
|
+
- spec/rails_3.1_app/config/initializers/devise.rb
|
116
|
+
- spec/rails_3.1_app/config/initializers/inflections.rb
|
117
|
+
- spec/rails_3.1_app/config/initializers/mime_types.rb
|
118
|
+
- spec/rails_3.1_app/config/initializers/secret_token.rb
|
119
|
+
- spec/rails_3.1_app/config/initializers/session_store.rb
|
120
|
+
- spec/rails_3.1_app/config/initializers/wrap_parameters.rb
|
121
|
+
- spec/rails_3.1_app/config/locales/devise.en.yml
|
122
|
+
- spec/rails_3.1_app/config/locales/en.yml
|
123
|
+
- spec/rails_3.1_app/config/mongo.yml
|
124
|
+
- spec/rails_3.1_app/config/mongoid.yml
|
125
|
+
- spec/rails_3.1_app/config/routes.rb
|
126
|
+
- spec/rails_3.1_app/db/migrate/20120222195914_create_users_table.rb
|
127
|
+
- spec/rails_3.1_app/db/schema.rb
|
128
|
+
- spec/rails_3.1_app/lib/tasks/.gitkeep
|
129
|
+
- spec/rails_3.1_app/log/.gitkeep
|
130
|
+
- spec/rails_3.1_app/public/404.html
|
131
|
+
- spec/rails_3.1_app/public/422.html
|
132
|
+
- spec/rails_3.1_app/public/500.html
|
133
|
+
- spec/rails_3.1_app/public/favicon.ico
|
134
|
+
- spec/rails_3.1_app/public/robots.txt
|
135
|
+
- spec/rails_3.1_app/script/rails
|
136
|
+
- spec/rails_3.1_app/vendor/assets/stylesheets/.gitkeep
|
137
|
+
- spec/rails_3.1_app/vendor/plugins/.gitkeep
|
138
|
+
- spec/rails_3.2_app/.gitignore
|
139
|
+
- spec/rails_3.2_app/README
|
140
|
+
- spec/rails_3.2_app/Rakefile
|
141
|
+
- spec/rails_3.2_app/app/assets/javascripts/application.js
|
142
|
+
- spec/rails_3.2_app/app/assets/stylesheets/application.css
|
143
|
+
- spec/rails_3.2_app/app/controllers/application_controller.rb
|
144
|
+
- spec/rails_3.2_app/app/controllers/home_controller.rb
|
145
|
+
- spec/rails_3.2_app/app/helpers/application_helper.rb
|
146
|
+
- spec/rails_3.2_app/app/mailers/.gitkeep
|
147
|
+
- spec/rails_3.2_app/app/models/.gitkeep
|
148
|
+
- spec/rails_3.2_app/app/models/user.rb
|
149
|
+
- spec/rails_3.2_app/app/views/devise/confirmations/new.html.erb
|
150
|
+
- spec/rails_3.2_app/app/views/devise/mailer/confirmation_instructions.html.erb
|
151
|
+
- spec/rails_3.2_app/app/views/devise/mailer/reset_password_instructions.html.erb
|
152
|
+
- spec/rails_3.2_app/app/views/devise/mailer/unlock_instructions.html.erb
|
153
|
+
- spec/rails_3.2_app/app/views/devise/passwords/edit.html.erb
|
154
|
+
- spec/rails_3.2_app/app/views/devise/passwords/new.html.erb
|
155
|
+
- spec/rails_3.2_app/app/views/devise/registrations/edit.html.erb
|
156
|
+
- spec/rails_3.2_app/app/views/devise/registrations/new.html.erb
|
157
|
+
- spec/rails_3.2_app/app/views/devise/sessions/new.html.erb
|
158
|
+
- spec/rails_3.2_app/app/views/devise/shared/_links.erb
|
159
|
+
- spec/rails_3.2_app/app/views/devise/unlocks/new.html.erb
|
160
|
+
- spec/rails_3.2_app/app/views/home/index.html.erb
|
161
|
+
- spec/rails_3.2_app/app/views/layouts/application.html.erb
|
162
|
+
- spec/rails_3.2_app/config.ru
|
163
|
+
- spec/rails_3.2_app/config/application.rb
|
164
|
+
- spec/rails_3.2_app/config/boot.rb
|
165
|
+
- spec/rails_3.2_app/config/database.yml
|
166
|
+
- spec/rails_3.2_app/config/environment.rb
|
167
|
+
- spec/rails_3.2_app/config/environments/development.rb
|
168
|
+
- spec/rails_3.2_app/config/environments/production.rb
|
169
|
+
- spec/rails_3.2_app/config/environments/test.rb
|
170
|
+
- spec/rails_3.2_app/config/initializers/backtrace_silencers.rb
|
171
|
+
- spec/rails_3.2_app/config/initializers/devise.rb
|
172
|
+
- spec/rails_3.2_app/config/initializers/inflections.rb
|
173
|
+
- spec/rails_3.2_app/config/initializers/mime_types.rb
|
174
|
+
- spec/rails_3.2_app/config/initializers/secret_token.rb
|
175
|
+
- spec/rails_3.2_app/config/initializers/session_store.rb
|
176
|
+
- spec/rails_3.2_app/config/initializers/wrap_parameters.rb
|
177
|
+
- spec/rails_3.2_app/config/locales/devise.en.yml
|
178
|
+
- spec/rails_3.2_app/config/locales/en.yml
|
179
|
+
- spec/rails_3.2_app/config/mongo.yml
|
180
|
+
- spec/rails_3.2_app/config/mongoid.yml
|
181
|
+
- spec/rails_3.2_app/config/routes.rb
|
182
|
+
- spec/rails_3.2_app/db/migrate/20120222195914_create_users_table.rb
|
183
|
+
- spec/rails_3.2_app/db/schema.rb
|
184
|
+
- spec/rails_3.2_app/lib/tasks/.gitkeep
|
185
|
+
- spec/rails_3.2_app/log/.gitkeep
|
186
|
+
- spec/rails_3.2_app/public/404.html
|
187
|
+
- spec/rails_3.2_app/public/422.html
|
188
|
+
- spec/rails_3.2_app/public/500.html
|
189
|
+
- spec/rails_3.2_app/public/favicon.ico
|
190
|
+
- spec/rails_3.2_app/public/robots.txt
|
191
|
+
- spec/rails_3.2_app/script/rails
|
192
|
+
- spec/rails_3.2_app/vendor/assets/stylesheets/.gitkeep
|
193
|
+
- spec/rails_3.2_app/vendor/plugins/.gitkeep
|
194
|
+
- spec/rails_4.0_app/.gitignore
|
195
|
+
- spec/rails_4.0_app/Rakefile
|
196
|
+
- spec/rails_4.0_app/app/assets/images/.keep
|
197
|
+
- spec/rails_4.0_app/app/assets/javascripts/application.js
|
198
|
+
- spec/rails_4.0_app/app/assets/stylesheets/application.css
|
199
|
+
- spec/rails_4.0_app/app/controllers/application_controller.rb
|
200
|
+
- spec/rails_4.0_app/app/controllers/concerns/.keep
|
201
|
+
- spec/rails_4.0_app/app/controllers/home_controller.rb
|
202
|
+
- spec/rails_4.0_app/app/helpers/application_helper.rb
|
203
|
+
- spec/rails_4.0_app/app/mailers/.keep
|
204
|
+
- spec/rails_4.0_app/app/models/.keep
|
205
|
+
- spec/rails_4.0_app/app/models/concerns/.keep
|
206
|
+
- spec/rails_4.0_app/app/models/user.rb
|
207
|
+
- spec/rails_4.0_app/app/views/devise/confirmations/new.html.erb
|
208
|
+
- spec/rails_4.0_app/app/views/devise/mailer/confirmation_instructions.html.erb
|
209
|
+
- spec/rails_4.0_app/app/views/devise/mailer/reset_password_instructions.html.erb
|
210
|
+
- spec/rails_4.0_app/app/views/devise/mailer/unlock_instructions.html.erb
|
211
|
+
- spec/rails_4.0_app/app/views/devise/passwords/edit.html.erb
|
212
|
+
- spec/rails_4.0_app/app/views/devise/passwords/new.html.erb
|
213
|
+
- spec/rails_4.0_app/app/views/devise/registrations/edit.html.erb
|
214
|
+
- spec/rails_4.0_app/app/views/devise/registrations/new.html.erb
|
215
|
+
- spec/rails_4.0_app/app/views/devise/sessions/new.html.erb
|
216
|
+
- spec/rails_4.0_app/app/views/devise/shared/_links.erb
|
217
|
+
- spec/rails_4.0_app/app/views/devise/unlocks/new.html.erb
|
218
|
+
- spec/rails_4.0_app/app/views/home/index.html.erb
|
219
|
+
- spec/rails_4.0_app/app/views/layouts/application.html.erb
|
220
|
+
- spec/rails_4.0_app/bin/bundle
|
221
|
+
- spec/rails_4.0_app/bin/rails
|
222
|
+
- spec/rails_4.0_app/bin/rake
|
223
|
+
- spec/rails_4.0_app/config.ru
|
224
|
+
- spec/rails_4.0_app/config/application.rb
|
225
|
+
- spec/rails_4.0_app/config/boot.rb
|
226
|
+
- spec/rails_4.0_app/config/database.yml
|
227
|
+
- spec/rails_4.0_app/config/environment.rb
|
228
|
+
- spec/rails_4.0_app/config/environments/development.rb
|
229
|
+
- spec/rails_4.0_app/config/environments/production.rb
|
230
|
+
- spec/rails_4.0_app/config/environments/test.rb
|
231
|
+
- spec/rails_4.0_app/config/initializers/backtrace_silencers.rb
|
232
|
+
- spec/rails_4.0_app/config/initializers/devise.rb
|
233
|
+
- spec/rails_4.0_app/config/initializers/filter_parameter_logging.rb
|
234
|
+
- spec/rails_4.0_app/config/initializers/inflections.rb
|
235
|
+
- spec/rails_4.0_app/config/initializers/mime_types.rb
|
236
|
+
- spec/rails_4.0_app/config/initializers/secret_token.rb
|
237
|
+
- spec/rails_4.0_app/config/initializers/session_store.rb
|
238
|
+
- spec/rails_4.0_app/config/initializers/wrap_parameters.rb
|
239
|
+
- spec/rails_4.0_app/config/locales/devise.en.yml
|
240
|
+
- spec/rails_4.0_app/config/locales/en.yml
|
241
|
+
- spec/rails_4.0_app/config/mongo.yml
|
242
|
+
- spec/rails_4.0_app/config/mongoid.yml
|
243
|
+
- spec/rails_4.0_app/config/routes.rb
|
244
|
+
- spec/rails_4.0_app/db/migrate/20140301171212_add_devise_users.rb
|
245
|
+
- spec/rails_4.0_app/db/schema.rb
|
246
|
+
- spec/rails_4.0_app/db/seeds.rb
|
247
|
+
- spec/rails_4.0_app/lib/assets/.keep
|
248
|
+
- spec/rails_4.0_app/lib/tasks/.keep
|
249
|
+
- spec/rails_4.0_app/log/.keep
|
250
|
+
- spec/rails_4.0_app/public/404.html
|
251
|
+
- spec/rails_4.0_app/public/422.html
|
252
|
+
- spec/rails_4.0_app/public/500.html
|
253
|
+
- spec/rails_4.0_app/public/favicon.ico
|
254
|
+
- spec/rails_4.0_app/public/robots.txt
|
255
|
+
- spec/rails_4.1_app/.gitignore
|
256
|
+
- spec/rails_4.1_app/Rakefile
|
257
|
+
- spec/rails_4.1_app/app/assets/images/.keep
|
258
|
+
- spec/rails_4.1_app/app/assets/javascripts/application.js
|
259
|
+
- spec/rails_4.1_app/app/assets/stylesheets/application.css
|
260
|
+
- spec/rails_4.1_app/app/controllers/application_controller.rb
|
261
|
+
- spec/rails_4.1_app/app/controllers/concerns/.keep
|
262
|
+
- spec/rails_4.1_app/app/controllers/home_controller.rb
|
263
|
+
- spec/rails_4.1_app/app/helpers/application_helper.rb
|
264
|
+
- spec/rails_4.1_app/app/mailers/.keep
|
265
|
+
- spec/rails_4.1_app/app/models/.keep
|
266
|
+
- spec/rails_4.1_app/app/models/concerns/.keep
|
267
|
+
- spec/rails_4.1_app/app/models/user.rb
|
268
|
+
- spec/rails_4.1_app/app/views/devise/confirmations/new.html.erb
|
269
|
+
- spec/rails_4.1_app/app/views/devise/mailer/confirmation_instructions.html.erb
|
270
|
+
- spec/rails_4.1_app/app/views/devise/mailer/reset_password_instructions.html.erb
|
271
|
+
- spec/rails_4.1_app/app/views/devise/mailer/unlock_instructions.html.erb
|
272
|
+
- spec/rails_4.1_app/app/views/devise/passwords/edit.html.erb
|
273
|
+
- spec/rails_4.1_app/app/views/devise/passwords/new.html.erb
|
274
|
+
- spec/rails_4.1_app/app/views/devise/registrations/edit.html.erb
|
275
|
+
- spec/rails_4.1_app/app/views/devise/registrations/new.html.erb
|
276
|
+
- spec/rails_4.1_app/app/views/devise/sessions/new.html.erb
|
277
|
+
- spec/rails_4.1_app/app/views/devise/shared/_links.erb
|
278
|
+
- spec/rails_4.1_app/app/views/devise/unlocks/new.html.erb
|
279
|
+
- spec/rails_4.1_app/app/views/home/index.html.erb
|
280
|
+
- spec/rails_4.1_app/app/views/layouts/application.html.erb
|
281
|
+
- spec/rails_4.1_app/bin/bundle
|
282
|
+
- spec/rails_4.1_app/bin/rails
|
283
|
+
- spec/rails_4.1_app/bin/rake
|
284
|
+
- spec/rails_4.1_app/bin/spring
|
285
|
+
- spec/rails_4.1_app/config.ru
|
286
|
+
- spec/rails_4.1_app/config/application.rb
|
287
|
+
- spec/rails_4.1_app/config/boot.rb
|
288
|
+
- spec/rails_4.1_app/config/database.yml
|
289
|
+
- spec/rails_4.1_app/config/environment.rb
|
290
|
+
- spec/rails_4.1_app/config/environments/development.rb
|
291
|
+
- spec/rails_4.1_app/config/environments/production.rb
|
292
|
+
- spec/rails_4.1_app/config/environments/test.rb
|
293
|
+
- spec/rails_4.1_app/config/initializers/backtrace_silencers.rb
|
294
|
+
- spec/rails_4.1_app/config/initializers/cookies_serializer.rb
|
295
|
+
- spec/rails_4.1_app/config/initializers/devise.rb
|
296
|
+
- spec/rails_4.1_app/config/initializers/filter_parameter_logging.rb
|
297
|
+
- spec/rails_4.1_app/config/initializers/inflections.rb
|
298
|
+
- spec/rails_4.1_app/config/initializers/mime_types.rb
|
299
|
+
- spec/rails_4.1_app/config/initializers/session_store.rb
|
300
|
+
- spec/rails_4.1_app/config/initializers/wrap_parameters.rb
|
301
|
+
- spec/rails_4.1_app/config/locales/devise.en.yml
|
302
|
+
- spec/rails_4.1_app/config/locales/en.yml
|
303
|
+
- spec/rails_4.1_app/config/mongo.yml
|
304
|
+
- spec/rails_4.1_app/config/mongoid.yml
|
305
|
+
- spec/rails_4.1_app/config/routes.rb
|
306
|
+
- spec/rails_4.1_app/config/secrets.yml
|
307
|
+
- spec/rails_4.1_app/db/migrate/20140301171212_add_devise_users.rb
|
308
|
+
- spec/rails_4.1_app/db/schema.rb
|
309
|
+
- spec/rails_4.1_app/db/seeds.rb
|
310
|
+
- spec/rails_4.1_app/lib/assets/.keep
|
311
|
+
- spec/rails_4.1_app/lib/tasks/.keep
|
312
|
+
- spec/rails_4.1_app/log/.keep
|
313
|
+
- spec/rails_4.1_app/public/404.html
|
314
|
+
- spec/rails_4.1_app/public/422.html
|
315
|
+
- spec/rails_4.1_app/public/500.html
|
316
|
+
- spec/rails_4.1_app/public/favicon.ico
|
317
|
+
- spec/rails_4.1_app/public/robots.txt
|
318
|
+
- spec/rails_4.2_app/.gitignore
|
319
|
+
- spec/rails_4.2_app/Rakefile
|
320
|
+
- spec/rails_4.2_app/app/assets/images/.keep
|
321
|
+
- spec/rails_4.2_app/app/assets/javascripts/application.js
|
322
|
+
- spec/rails_4.2_app/app/assets/stylesheets/application.css
|
323
|
+
- spec/rails_4.2_app/app/controllers/application_controller.rb
|
324
|
+
- spec/rails_4.2_app/app/controllers/concerns/.keep
|
325
|
+
- spec/rails_4.2_app/app/controllers/home_controller.rb
|
326
|
+
- spec/rails_4.2_app/app/helpers/application_helper.rb
|
327
|
+
- spec/rails_4.2_app/app/mailers/.keep
|
328
|
+
- spec/rails_4.2_app/app/models/.keep
|
329
|
+
- spec/rails_4.2_app/app/models/concerns/.keep
|
330
|
+
- spec/rails_4.2_app/app/models/user.rb
|
331
|
+
- spec/rails_4.2_app/app/views/devise/confirmations/new.html.erb
|
332
|
+
- spec/rails_4.2_app/app/views/devise/mailer/confirmation_instructions.html.erb
|
333
|
+
- spec/rails_4.2_app/app/views/devise/mailer/reset_password_instructions.html.erb
|
334
|
+
- spec/rails_4.2_app/app/views/devise/mailer/unlock_instructions.html.erb
|
335
|
+
- spec/rails_4.2_app/app/views/devise/passwords/edit.html.erb
|
336
|
+
- spec/rails_4.2_app/app/views/devise/passwords/new.html.erb
|
337
|
+
- spec/rails_4.2_app/app/views/devise/registrations/edit.html.erb
|
338
|
+
- spec/rails_4.2_app/app/views/devise/registrations/new.html.erb
|
339
|
+
- spec/rails_4.2_app/app/views/devise/sessions/new.html.erb
|
340
|
+
- spec/rails_4.2_app/app/views/devise/shared/_links.erb
|
341
|
+
- spec/rails_4.2_app/app/views/devise/unlocks/new.html.erb
|
342
|
+
- spec/rails_4.2_app/app/views/home/index.html.erb
|
343
|
+
- spec/rails_4.2_app/app/views/layouts/application.html.erb
|
344
|
+
- spec/rails_4.2_app/bin/bundle
|
345
|
+
- spec/rails_4.2_app/bin/rails
|
346
|
+
- spec/rails_4.2_app/bin/rake
|
347
|
+
- spec/rails_4.2_app/bin/setup
|
348
|
+
- spec/rails_4.2_app/bin/spring
|
349
|
+
- spec/rails_4.2_app/config.ru
|
350
|
+
- spec/rails_4.2_app/config/application.rb
|
351
|
+
- spec/rails_4.2_app/config/boot.rb
|
352
|
+
- spec/rails_4.2_app/config/database.yml
|
353
|
+
- spec/rails_4.2_app/config/environment.rb
|
354
|
+
- spec/rails_4.2_app/config/environments/development.rb
|
355
|
+
- spec/rails_4.2_app/config/environments/production.rb
|
356
|
+
- spec/rails_4.2_app/config/environments/test.rb
|
357
|
+
- spec/rails_4.2_app/config/initializers/assets.rb
|
358
|
+
- spec/rails_4.2_app/config/initializers/backtrace_silencers.rb
|
359
|
+
- spec/rails_4.2_app/config/initializers/cookies_serializer.rb
|
360
|
+
- spec/rails_4.2_app/config/initializers/devise.rb
|
361
|
+
- spec/rails_4.2_app/config/initializers/filter_parameter_logging.rb
|
362
|
+
- spec/rails_4.2_app/config/initializers/inflections.rb
|
363
|
+
- spec/rails_4.2_app/config/initializers/mime_types.rb
|
364
|
+
- spec/rails_4.2_app/config/initializers/session_store.rb
|
365
|
+
- spec/rails_4.2_app/config/initializers/wrap_parameters.rb
|
366
|
+
- spec/rails_4.2_app/config/locales/en.yml
|
367
|
+
- spec/rails_4.2_app/config/mongo.yml
|
368
|
+
- spec/rails_4.2_app/config/mongoid.yml
|
369
|
+
- spec/rails_4.2_app/config/routes.rb
|
370
|
+
- spec/rails_4.2_app/config/secrets.yml
|
371
|
+
- spec/rails_4.2_app/db/migrate/20140301171212_add_devise_users.rb
|
372
|
+
- spec/rails_4.2_app/db/schema.rb
|
373
|
+
- spec/rails_4.2_app/db/seeds.rb
|
374
|
+
- spec/rails_4.2_app/lib/assets/.keep
|
375
|
+
- spec/rails_4.2_app/lib/tasks/.keep
|
376
|
+
- spec/rails_4.2_app/log/.keep
|
377
|
+
- spec/rails_4.2_app/public/404.html
|
378
|
+
- spec/rails_4.2_app/public/422.html
|
379
|
+
- spec/rails_4.2_app/public/500.html
|
380
|
+
- spec/rails_4.2_app/public/favicon.ico
|
381
|
+
- spec/rails_4.2_app/public/robots.txt
|
382
|
+
- spec/rails_helper.rb
|
383
|
+
- spec/spec_helper.rb
|
384
|
+
homepage: https://github.com/ack43/mongo_session_store
|
385
|
+
licenses:
|
386
|
+
- MIT
|
387
|
+
metadata: {}
|
388
|
+
post_install_message:
|
389
|
+
rdoc_options: []
|
390
|
+
require_paths:
|
391
|
+
- lib
|
392
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
393
|
+
requirements:
|
394
|
+
- - ">="
|
395
|
+
- !ruby/object:Gem::Version
|
396
|
+
version: '0'
|
397
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
398
|
+
requirements:
|
399
|
+
- - ">="
|
400
|
+
- !ruby/object:Gem::Version
|
401
|
+
version: '0'
|
402
|
+
requirements: []
|
403
|
+
rubyforge_project:
|
404
|
+
rubygems_version: 2.5.1
|
405
|
+
signing_key:
|
406
|
+
specification_version: 4
|
407
|
+
summary: Rails session stores for MongoMapper, Mongoid, or any other ODM. Rails 5.0
|
408
|
+
compatible.
|
409
|
+
test_files: []
|