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,22 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure the secrets in this file are kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
|
13
|
+
development:
|
14
|
+
secret_key_base: a8ef04e888ee54014dfb4f32ca538e987f1c160db5ee225b2e863b82664d356be5746975fd059da6b0c00215ce1c597bceeacb119093c94be461161181975a76
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: f777f8cc4e8ca43ff30bae1dcdb77088467cff65759fc4298c5e6644ad0d9cf22f8128b3eabde1ea8ef37724d8bdab38088e4d11f6a7389cf0d0f7db3cb1f719
|
18
|
+
|
19
|
+
# Do not keep production secrets in the repository,
|
20
|
+
# instead read values from the environment.
|
21
|
+
production:
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
@@ -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,17 @@
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
2
|
+
#
|
3
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
4
|
+
# or operating system, you probably want to add a global ignore instead:
|
5
|
+
# git config --global core.excludesfile '~/.gitignore_global'
|
6
|
+
|
7
|
+
# Ignore bundler config.
|
8
|
+
/.bundle
|
9
|
+
|
10
|
+
# Ignore the default SQLite database.
|
11
|
+
/db/*.sqlite3
|
12
|
+
/db/*.sqlite3-journal
|
13
|
+
|
14
|
+
# Ignore all logfiles and tempfiles.
|
15
|
+
/log/*
|
16
|
+
!/log/.keep
|
17
|
+
/tmp
|
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// compiled file.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require_tree .
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
+
* file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree .
|
14
|
+
*= require_self
|
15
|
+
*/
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<h2>Resend confirmation instructions</h2>
|
2
|
+
|
3
|
+
<%= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f| %>
|
4
|
+
<%= devise_error_messages! %>
|
5
|
+
|
6
|
+
<div><%= f.label :email %><br />
|
7
|
+
<%= f.email_field :email, :autofocus => true %></div>
|
8
|
+
|
9
|
+
<div><%= f.submit "Resend confirmation instructions" %></div>
|
10
|
+
<% end %>
|
11
|
+
|
12
|
+
<%= render "devise/shared/links" %>
|