any_login 1.4.4 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +22 -7
- data/app/controllers/any_login/application_controller.rb +3 -2
- data/lib/any_login/engine.rb +19 -22
- data/lib/any_login/helpers.rb +2 -2
- data/lib/any_login/providers/authlogic.rb +0 -2
- data/lib/any_login/providers/clearance.rb +0 -4
- data/lib/any_login/providers/devise.rb +0 -2
- data/lib/any_login/providers/sorcery.rb +0 -2
- data/lib/any_login/version.rb +1 -1
- data/test/authlogic/integration/navigation_test.rb +25 -0
- data/test/authlogic/test_helper_authlogic.rb +5 -0
- data/test/clearance/integration/navigation_test.rb +24 -0
- data/test/clearance/test_helper_clearance.rb +5 -0
- data/test/devise/integration/navigation_test.rb +26 -0
- data/test/devise/test_helper_devise.rb +5 -0
- data/test/{any_login_test.rb → devise/unit/any_login_test.rb} +1 -1
- data/test/{any_login → devise/unit}/collection_test.rb +1 -1
- data/test/{dummy-sorcery → rails_apps/authlogic}/Rakefile +1 -1
- data/test/rails_apps/authlogic/app/assets/config/manifest.js +1 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/app/controllers/application_controller.rb +0 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/app/controllers/home_controller.rb +1 -1
- data/test/{dummy-authlogic → rails_apps/authlogic}/app/controllers/user_sessions_controller.rb +0 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/app/models/user.rb +0 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/app/models/user_session.rb +0 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/app/views/home/about.html.erb +0 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/app/views/home/index.html.erb +0 -0
- data/test/rails_apps/authlogic/app/views/layouts/application.html.erb +29 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/app/views/shared/_footer.html.erb +0 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/app/views/shared/_header.html.erb +0 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/app/views/user_sessions/new.html.erb +0 -0
- data/test/rails_apps/authlogic/bin/rails +4 -0
- data/test/rails_apps/authlogic/bin/rake +4 -0
- data/test/rails_apps/authlogic/bin/setup +33 -0
- data/test/rails_apps/authlogic/config/application.rb +25 -0
- data/test/rails_apps/authlogic/config/boot.rb +5 -0
- data/test/{dummy-sorcery → rails_apps/authlogic}/config/database.yml +3 -3
- data/test/{dummy-clearance → rails_apps/authlogic}/config/environment.rb +1 -1
- data/test/rails_apps/authlogic/config/environments/development.rb +70 -0
- data/test/{dummy → rails_apps/authlogic}/config/environments/production.rb +40 -26
- data/test/rails_apps/authlogic/config/environments/test.rb +60 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/config/initializers/any_login.rb +1 -0
- data/test/rails_apps/authlogic/config/initializers/assets.rb +12 -0
- data/test/rails_apps/authlogic/config/initializers/filter_parameter_logging.rb +8 -0
- data/test/{dummy-clearance → rails_apps/authlogic}/config/initializers/inflections.rb +4 -4
- data/test/{dummy-sorcery → rails_apps/authlogic}/config/initializers/sorcery.rb +0 -0
- data/test/{dummy-sorcery → rails_apps/authlogic}/config/locales/en.yml +13 -3
- data/test/{dummy-authlogic → rails_apps/authlogic}/config/routes.rb +0 -0
- data/test/rails_apps/authlogic/config/storage.yml +34 -0
- data/test/{dummy-clearance → rails_apps/authlogic}/config.ru +3 -1
- data/test/{dummy-clearance → rails_apps/authlogic}/db/migrate/20150907190739_create_users.rb +1 -1
- data/test/{dummy → rails_apps/authlogic}/db/migrate/20150907190846_add_devise_to_users.rb +1 -1
- data/test/{dummy-clearance → rails_apps/authlogic}/db/migrate/20150928123254_change_users.rb +1 -1
- data/test/rails_apps/authlogic/db/migrate/20220825195914_populate_test_users.rb +21 -0
- data/test/rails_apps/authlogic/db/schema.rb +46 -0
- data/test/{dummy-authlogic → rails_apps/authlogic}/public/404.html +6 -6
- data/test/{dummy-clearance → rails_apps/authlogic}/public/422.html +6 -6
- data/test/{dummy-clearance → rails_apps/authlogic}/public/500.html +6 -6
- data/test/{dummy-authlogic → rails_apps/authlogic}/public/favicon.ico +0 -0
- data/test/{dummy-clearance → rails_apps/clearance}/Rakefile +1 -1
- data/test/rails_apps/clearance/app/assets/config/manifest.js +1 -0
- data/test/{dummy-clearance → rails_apps/clearance}/app/controllers/application_controller.rb +0 -0
- data/test/{dummy-clearance → rails_apps/clearance}/app/controllers/home_controller.rb +0 -0
- data/test/{dummy-clearance → rails_apps/clearance}/app/models/user.rb +0 -0
- data/test/{dummy-clearance → rails_apps/clearance}/app/models/user_session.rb +0 -0
- data/test/{dummy-clearance → rails_apps/clearance}/app/views/home/about.html.erb +0 -0
- data/test/{dummy-clearance → rails_apps/clearance}/app/views/home/index.html.erb +0 -0
- data/test/rails_apps/clearance/app/views/layouts/application.html.erb +29 -0
- data/test/{dummy-clearance → rails_apps/clearance}/app/views/shared/_footer.html.erb +0 -0
- data/test/{dummy-clearance → rails_apps/clearance}/app/views/shared/_header.html.erb +0 -0
- data/test/rails_apps/clearance/bin/rails +4 -0
- data/test/rails_apps/clearance/bin/rake +4 -0
- data/test/rails_apps/clearance/bin/setup +33 -0
- data/test/rails_apps/clearance/config/application.rb +25 -0
- data/test/rails_apps/clearance/config/boot.rb +5 -0
- data/test/{dummy-authlogic → rails_apps/clearance}/config/database.yml +3 -3
- data/test/{dummy → rails_apps/clearance}/config/environment.rb +1 -1
- data/test/rails_apps/clearance/config/environments/development.rb +70 -0
- data/test/{dummy-authlogic → rails_apps/clearance}/config/environments/production.rb +40 -26
- data/test/rails_apps/clearance/config/environments/test.rb +60 -0
- data/test/{dummy-clearance → rails_apps/clearance}/config/initializers/any_login.rb +1 -0
- data/test/rails_apps/clearance/config/initializers/assets.rb +12 -0
- data/test/{dummy-clearance → rails_apps/clearance}/config/initializers/clearance.rb +0 -0
- data/test/rails_apps/clearance/config/initializers/filter_parameter_logging.rb +8 -0
- data/test/{dummy-sorcery → rails_apps/clearance}/config/initializers/inflections.rb +4 -4
- data/test/{dummy-authlogic → rails_apps/clearance}/config/locales/en.yml +13 -3
- data/test/{dummy-clearance → rails_apps/clearance}/config/routes.rb +0 -0
- data/test/rails_apps/clearance/config/storage.yml +34 -0
- data/test/{dummy-sorcery → rails_apps/clearance}/config.ru +3 -1
- data/test/{dummy-sorcery → rails_apps/clearance}/db/migrate/20150907190739_create_users.rb +1 -1
- data/test/{dummy-sorcery → rails_apps/clearance}/db/migrate/20150907190846_add_devise_to_users.rb +1 -1
- data/test/{dummy-clearance → rails_apps/clearance}/db/migrate/20150909210357_populate_test_users.rb +6 -6
- data/test/{dummy-authlogic → rails_apps/clearance}/db/migrate/20150928123254_change_users.rb +1 -1
- data/test/{dummy-clearance → rails_apps/clearance}/db/migrate/20151007170422_add_clearance_to_users.rb +1 -1
- data/test/rails_apps/clearance/db/schema.rb +49 -0
- data/test/{dummy-sorcery → rails_apps/clearance}/public/404.html +6 -6
- data/test/{dummy-sorcery → rails_apps/clearance}/public/422.html +6 -6
- data/test/{dummy-sorcery → rails_apps/clearance}/public/500.html +6 -6
- data/test/{dummy-clearance → rails_apps/clearance}/public/favicon.ico +0 -0
- data/test/{dummy → rails_apps/devise}/Rakefile +1 -1
- data/test/rails_apps/devise/app/assets/config/manifest.js +1 -0
- data/test/rails_apps/devise/app/controllers/application_controller.rb +2 -0
- data/test/{dummy → rails_apps/devise}/app/controllers/home_controller.rb +0 -0
- data/test/{dummy → rails_apps/devise}/app/models/user.rb +0 -0
- data/test/{dummy-sorcery → rails_apps/devise}/app/views/home/about.html.erb +0 -0
- data/test/{dummy → rails_apps/devise}/app/views/home/index.html.erb +0 -0
- data/test/rails_apps/devise/app/views/layouts/application.html.erb +29 -0
- data/test/{dummy → rails_apps/devise}/app/views/shared/_footer.html.erb +0 -1
- data/test/{dummy-sorcery → rails_apps/devise}/app/views/shared/_header.html.erb +0 -0
- data/test/rails_apps/devise/bin/rails +4 -0
- data/test/rails_apps/devise/bin/rake +4 -0
- data/test/rails_apps/devise/bin/setup +33 -0
- data/test/rails_apps/devise/config/application.rb +25 -0
- data/test/rails_apps/devise/config/boot.rb +5 -0
- data/test/{dummy → rails_apps/devise}/config/database.yml +3 -3
- data/test/{dummy-sorcery → rails_apps/devise}/config/environment.rb +1 -1
- data/test/rails_apps/devise/config/environments/development.rb +67 -0
- data/test/{dummy-clearance → rails_apps/devise}/config/environments/production.rb +40 -26
- data/test/rails_apps/devise/config/environments/test.rb +60 -0
- data/test/{dummy → rails_apps/devise}/config/initializers/any_login.rb +1 -0
- data/test/rails_apps/devise/config/initializers/assets.rb +12 -0
- data/test/{dummy → rails_apps/devise}/config/initializers/devise.rb +0 -0
- data/test/rails_apps/devise/config/initializers/filter_parameter_logging.rb +8 -0
- data/test/{dummy-authlogic → rails_apps/devise}/config/initializers/inflections.rb +4 -4
- data/test/{dummy → rails_apps/devise}/config/locales/en.yml +13 -3
- data/test/{dummy → rails_apps/devise}/config/routes.rb +0 -0
- data/test/rails_apps/devise/config/storage.yml +34 -0
- data/test/{dummy-authlogic → rails_apps/devise}/config.ru +3 -1
- data/test/{dummy → rails_apps/devise}/db/migrate/20150907190739_create_users.rb +1 -1
- data/test/{dummy-clearance → rails_apps/devise}/db/migrate/20150907190846_add_devise_to_users.rb +1 -1
- data/test/rails_apps/devise/db/migrate/20150909210357_populate_test_users.rb +21 -0
- data/test/rails_apps/devise/db/schema.rb +35 -0
- data/test/{dummy-clearance → rails_apps/devise}/public/404.html +6 -6
- data/test/{dummy → rails_apps/devise}/public/422.html +6 -6
- data/test/{dummy → rails_apps/devise}/public/500.html +6 -6
- data/test/{dummy-sorcery → rails_apps/devise}/public/favicon.ico +0 -0
- data/test/{dummy-authlogic → rails_apps/sorcery}/Rakefile +1 -1
- data/test/rails_apps/sorcery/app/assets/config/manifest.js +1 -0
- data/test/rails_apps/sorcery/app/controllers/application_controller.rb +2 -0
- data/test/{dummy-sorcery → rails_apps/sorcery}/app/controllers/home_controller.rb +0 -0
- data/test/{dummy-sorcery → rails_apps/sorcery}/app/models/user.rb +0 -0
- data/test/{dummy → rails_apps/sorcery}/app/views/home/about.html.erb +0 -0
- data/test/{dummy-sorcery → rails_apps/sorcery}/app/views/home/index.html.erb +0 -0
- data/test/rails_apps/sorcery/app/views/layouts/application.html.erb +29 -0
- data/test/{dummy-sorcery → rails_apps/sorcery}/app/views/shared/_footer.html.erb +0 -0
- data/test/{dummy → rails_apps/sorcery}/app/views/shared/_header.html.erb +0 -0
- data/test/rails_apps/sorcery/bin/rails +4 -0
- data/test/rails_apps/sorcery/bin/rake +4 -0
- data/test/rails_apps/sorcery/bin/setup +33 -0
- data/test/rails_apps/sorcery/config/application.rb +25 -0
- data/test/rails_apps/sorcery/config/boot.rb +5 -0
- data/test/{dummy-clearance → rails_apps/sorcery}/config/database.yml +3 -3
- data/test/{dummy-authlogic → rails_apps/sorcery}/config/environment.rb +1 -1
- data/test/rails_apps/sorcery/config/environments/development.rb +70 -0
- data/test/{dummy-sorcery → rails_apps/sorcery}/config/environments/production.rb +40 -26
- data/test/rails_apps/sorcery/config/environments/test.rb +60 -0
- data/test/{dummy-sorcery → rails_apps/sorcery}/config/initializers/any_login.rb +1 -0
- data/test/rails_apps/sorcery/config/initializers/assets.rb +12 -0
- data/test/rails_apps/sorcery/config/initializers/filter_parameter_logging.rb +8 -0
- data/test/{dummy → rails_apps/sorcery}/config/initializers/inflections.rb +4 -4
- data/test/rails_apps/sorcery/config/initializers/sorcery.rb +463 -0
- data/test/{dummy-clearance → rails_apps/sorcery}/config/locales/en.yml +13 -3
- data/test/{dummy-sorcery → rails_apps/sorcery}/config/routes.rb +0 -0
- data/test/rails_apps/sorcery/config/storage.yml +34 -0
- data/test/{dummy → rails_apps/sorcery}/config.ru +3 -1
- data/test/{dummy-authlogic → rails_apps/sorcery}/db/migrate/20150907190739_create_users.rb +1 -1
- data/test/{dummy-authlogic → rails_apps/sorcery}/db/migrate/20150907190846_add_devise_to_users.rb +1 -1
- data/test/rails_apps/sorcery/db/migrate/20150909210357_add_role_to_users.rb +6 -0
- data/test/{dummy-sorcery → rails_apps/sorcery}/db/migrate/20151019154558_sorcery_core.rb +2 -2
- data/test/rails_apps/sorcery/db/migrate/20220827040518_populate_test_users.rb +20 -0
- data/test/rails_apps/sorcery/db/schema.rb +37 -0
- data/test/{dummy → rails_apps/sorcery}/public/404.html +6 -6
- data/test/{dummy-authlogic → rails_apps/sorcery}/public/422.html +6 -6
- data/test/{dummy-authlogic → rails_apps/sorcery}/public/500.html +6 -6
- data/test/{dummy → rails_apps/sorcery}/public/favicon.ico +0 -0
- data/test/sorcery/integration/navigation_test.rb +24 -0
- data/test/sorcery/test_helper_sorcery.rb +5 -0
- data/test/test_helper_common.rb +25 -0
- metadata +346 -632
- data/test/dummy/README.rdoc +0 -28
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.svg +0 -288
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/test/dummy/app/assets/javascripts/application.js +0 -15
- data/test/dummy/app/assets/javascripts/bootstrap.min.js +0 -7
- data/test/dummy/app/assets/javascripts/home.js +0 -2
- data/test/dummy/app/assets/stylesheets/application.css +0 -22
- data/test/dummy/app/assets/stylesheets/bootstrap-theme.min.css +0 -5
- data/test/dummy/app/assets/stylesheets/bootstrap.min.css +0 -5
- data/test/dummy/app/assets/stylesheets/home.css +0 -4
- data/test/dummy/app/controllers/application_controller.rb +0 -5
- data/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/dummy/app/helpers/home_helper.rb +0 -2
- data/test/dummy/app/views/layouts/application.html.erb +0 -22
- data/test/dummy/bin/bundle +0 -3
- data/test/dummy/bin/rails +0 -4
- data/test/dummy/bin/rake +0 -4
- data/test/dummy/bin/setup +0 -29
- data/test/dummy/config/application.rb +0 -26
- data/test/dummy/config/boot.rb +0 -5
- data/test/dummy/config/environments/development.rb +0 -42
- data/test/dummy/config/environments/test.rb +0 -42
- data/test/dummy/config/initializers/assets.rb +0 -11
- data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
- data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/dummy/config/initializers/mime_types.rb +0 -4
- data/test/dummy/config/initializers/session_store.rb +0 -3
- data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/test/dummy/config/locales/devise.en.yml +0 -60
- data/test/dummy/config/secrets.yml +0 -22
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20150909210357_populate_test_users.rb +0 -21
- data/test/dummy/db/schema.rb +0 -37
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +0 -25
- data/test/dummy-authlogic/README.rdoc +0 -28
- data/test/dummy-authlogic/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/test/dummy-authlogic/app/assets/fonts/glyphicons-halflings-regular.svg +0 -288
- data/test/dummy-authlogic/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/test/dummy-authlogic/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/test/dummy-authlogic/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/test/dummy-authlogic/app/assets/javascripts/application.js +0 -15
- data/test/dummy-authlogic/app/assets/javascripts/bootstrap.min.js +0 -7
- data/test/dummy-authlogic/app/assets/javascripts/home.js +0 -2
- data/test/dummy-authlogic/app/assets/stylesheets/application.css +0 -15
- data/test/dummy-authlogic/app/assets/stylesheets/bootstrap-theme.min.css +0 -5
- data/test/dummy-authlogic/app/assets/stylesheets/bootstrap.min.css +0 -5
- data/test/dummy-authlogic/app/assets/stylesheets/home.css +0 -4
- data/test/dummy-authlogic/app/helpers/application_helper.rb +0 -2
- data/test/dummy-authlogic/app/helpers/home_helper.rb +0 -2
- data/test/dummy-authlogic/app/views/layouts/application.html.erb +0 -22
- data/test/dummy-authlogic/bin/bundle +0 -3
- data/test/dummy-authlogic/bin/rails +0 -4
- data/test/dummy-authlogic/bin/rake +0 -4
- data/test/dummy-authlogic/bin/setup +0 -29
- data/test/dummy-authlogic/config/application.rb +0 -26
- data/test/dummy-authlogic/config/boot.rb +0 -5
- data/test/dummy-authlogic/config/environments/development.rb +0 -42
- data/test/dummy-authlogic/config/environments/test.rb +0 -42
- data/test/dummy-authlogic/config/initializers/assets.rb +0 -11
- data/test/dummy-authlogic/config/initializers/backtrace_silencers.rb +0 -7
- data/test/dummy-authlogic/config/initializers/cookies_serializer.rb +0 -3
- data/test/dummy-authlogic/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/dummy-authlogic/config/initializers/mime_types.rb +0 -4
- data/test/dummy-authlogic/config/initializers/session_store.rb +0 -3
- data/test/dummy-authlogic/config/initializers/wrap_parameters.rb +0 -14
- data/test/dummy-authlogic/config/locales/devise.en.yml +0 -60
- data/test/dummy-authlogic/config/secrets.yml +0 -22
- data/test/dummy-authlogic/db/development.sqlite3 +0 -0
- data/test/dummy-authlogic/db/migrate/20150909210357_populate_test_users.rb +0 -21
- data/test/dummy-authlogic/db/schema.rb +0 -48
- data/test/dummy-clearance/README.rdoc +0 -28
- data/test/dummy-clearance/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/test/dummy-clearance/app/assets/fonts/glyphicons-halflings-regular.svg +0 -288
- data/test/dummy-clearance/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/test/dummy-clearance/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/test/dummy-clearance/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/test/dummy-clearance/app/assets/javascripts/application.js +0 -15
- data/test/dummy-clearance/app/assets/javascripts/bootstrap.min.js +0 -7
- data/test/dummy-clearance/app/assets/javascripts/home.js +0 -2
- data/test/dummy-clearance/app/assets/stylesheets/application.css +0 -15
- data/test/dummy-clearance/app/assets/stylesheets/bootstrap-theme.min.css +0 -5
- data/test/dummy-clearance/app/assets/stylesheets/bootstrap.min.css +0 -5
- data/test/dummy-clearance/app/assets/stylesheets/home.css +0 -4
- data/test/dummy-clearance/app/helpers/application_helper.rb +0 -2
- data/test/dummy-clearance/app/helpers/home_helper.rb +0 -2
- data/test/dummy-clearance/app/views/layouts/application.html.erb +0 -22
- data/test/dummy-clearance/app/views/user_sessions/new.html.erb +0 -11
- data/test/dummy-clearance/bin/bundle +0 -3
- data/test/dummy-clearance/bin/rails +0 -4
- data/test/dummy-clearance/bin/rake +0 -4
- data/test/dummy-clearance/bin/setup +0 -29
- data/test/dummy-clearance/config/application.rb +0 -26
- data/test/dummy-clearance/config/boot.rb +0 -5
- data/test/dummy-clearance/config/environments/development.rb +0 -42
- data/test/dummy-clearance/config/environments/test.rb +0 -42
- data/test/dummy-clearance/config/initializers/assets.rb +0 -11
- data/test/dummy-clearance/config/initializers/backtrace_silencers.rb +0 -7
- data/test/dummy-clearance/config/initializers/cookies_serializer.rb +0 -3
- data/test/dummy-clearance/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/dummy-clearance/config/initializers/mime_types.rb +0 -4
- data/test/dummy-clearance/config/initializers/session_store.rb +0 -3
- data/test/dummy-clearance/config/initializers/wrap_parameters.rb +0 -14
- data/test/dummy-clearance/config/locales/devise.en.yml +0 -60
- data/test/dummy-clearance/config/secrets.yml +0 -22
- data/test/dummy-clearance/db/schema.rb +0 -51
- data/test/dummy-sorcery/README.rdoc +0 -28
- data/test/dummy-sorcery/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/test/dummy-sorcery/app/assets/fonts/glyphicons-halflings-regular.svg +0 -288
- data/test/dummy-sorcery/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/test/dummy-sorcery/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/test/dummy-sorcery/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/test/dummy-sorcery/app/assets/javascripts/application.js +0 -15
- data/test/dummy-sorcery/app/assets/javascripts/bootstrap.min.js +0 -7
- data/test/dummy-sorcery/app/assets/javascripts/home.js +0 -2
- data/test/dummy-sorcery/app/assets/stylesheets/application.css +0 -15
- data/test/dummy-sorcery/app/assets/stylesheets/bootstrap-theme.min.css +0 -5
- data/test/dummy-sorcery/app/assets/stylesheets/bootstrap.min.css +0 -5
- data/test/dummy-sorcery/app/assets/stylesheets/home.css +0 -4
- data/test/dummy-sorcery/app/controllers/application_controller.rb +0 -5
- data/test/dummy-sorcery/app/helpers/application_helper.rb +0 -2
- data/test/dummy-sorcery/app/helpers/home_helper.rb +0 -2
- data/test/dummy-sorcery/app/views/layouts/application.html.erb +0 -22
- data/test/dummy-sorcery/bin/bundle +0 -3
- data/test/dummy-sorcery/bin/rails +0 -4
- data/test/dummy-sorcery/bin/rake +0 -4
- data/test/dummy-sorcery/bin/setup +0 -29
- data/test/dummy-sorcery/config/application.rb +0 -26
- data/test/dummy-sorcery/config/boot.rb +0 -5
- data/test/dummy-sorcery/config/environments/development.rb +0 -42
- data/test/dummy-sorcery/config/environments/test.rb +0 -42
- data/test/dummy-sorcery/config/initializers/assets.rb +0 -11
- data/test/dummy-sorcery/config/initializers/backtrace_silencers.rb +0 -7
- data/test/dummy-sorcery/config/initializers/cookies_serializer.rb +0 -3
- data/test/dummy-sorcery/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/dummy-sorcery/config/initializers/mime_types.rb +0 -4
- data/test/dummy-sorcery/config/initializers/session_store.rb +0 -3
- data/test/dummy-sorcery/config/initializers/wrap_parameters.rb +0 -14
- data/test/dummy-sorcery/config/locales/devise.en.yml +0 -60
- data/test/dummy-sorcery/config/secrets.yml +0 -22
- data/test/dummy-sorcery/db/migrate/20150909210357_populate_test_users.rb +0 -21
- data/test/dummy-sorcery/db/schema.rb +0 -39
- data/test/integration/navigation_test.rb +0 -8
- data/test/test_helper.rb +0 -17
@@ -0,0 +1,463 @@
|
|
1
|
+
# The first thing you need to configure is which modules you need in your app.
|
2
|
+
# The default is nothing which will include only core features (password encryption, login/logout).
|
3
|
+
# Available submodules are: :user_activation, :http_basic_auth, :remember_me,
|
4
|
+
# :reset_password, :session_timeout, :brute_force_protection, :activity_logging, :external
|
5
|
+
Rails.application.config.sorcery.submodules = []
|
6
|
+
|
7
|
+
# Here you can configure each submodule's features.
|
8
|
+
Rails.application.config.sorcery.configure do |config|
|
9
|
+
# -- core --
|
10
|
+
# What controller action to call for non-authenticated users. You can also
|
11
|
+
# override the 'not_authenticated' method of course.
|
12
|
+
# Default: `:not_authenticated`
|
13
|
+
#
|
14
|
+
# config.not_authenticated_action =
|
15
|
+
|
16
|
+
|
17
|
+
# When a non logged in user tries to enter a page that requires login, save
|
18
|
+
# the URL he wanted to reach, and send him there after login, using 'redirect_back_or_to'.
|
19
|
+
# Default: `true`
|
20
|
+
#
|
21
|
+
# config.save_return_to_url =
|
22
|
+
|
23
|
+
|
24
|
+
# Set domain option for cookies; Useful for remember_me submodule.
|
25
|
+
# Default: `nil`
|
26
|
+
#
|
27
|
+
# config.cookie_domain =
|
28
|
+
|
29
|
+
|
30
|
+
# Allow the remember_me cookie to be set through AJAX
|
31
|
+
# Default: `true`
|
32
|
+
#
|
33
|
+
# config.remember_me_httponly =
|
34
|
+
|
35
|
+
|
36
|
+
# -- session timeout --
|
37
|
+
# How long in seconds to keep the session alive.
|
38
|
+
# Default: `3600`
|
39
|
+
#
|
40
|
+
# config.session_timeout =
|
41
|
+
|
42
|
+
|
43
|
+
# Use the last action as the beginning of session timeout.
|
44
|
+
# Default: `false`
|
45
|
+
#
|
46
|
+
# config.session_timeout_from_last_action =
|
47
|
+
|
48
|
+
|
49
|
+
# -- http_basic_auth --
|
50
|
+
# What realm to display for which controller name. For example {"My App" => "Application"}
|
51
|
+
# Default: `{"application" => "Application"}`
|
52
|
+
#
|
53
|
+
# config.controller_to_realm_map =
|
54
|
+
|
55
|
+
|
56
|
+
# -- activity logging --
|
57
|
+
# will register the time of last user login, every login.
|
58
|
+
# Default: `true`
|
59
|
+
#
|
60
|
+
# config.register_login_time =
|
61
|
+
|
62
|
+
|
63
|
+
# will register the time of last user logout, every logout.
|
64
|
+
# Default: `true`
|
65
|
+
#
|
66
|
+
# config.register_logout_time =
|
67
|
+
|
68
|
+
|
69
|
+
# will register the time of last user action, every action.
|
70
|
+
# Default: `true`
|
71
|
+
#
|
72
|
+
# config.register_last_activity_time =
|
73
|
+
|
74
|
+
|
75
|
+
# -- external --
|
76
|
+
# What providers are supported by this app, i.e. [:twitter, :facebook, :github, :linkedin, :xing, :google, :liveid, :salesforce] .
|
77
|
+
# Default: `[]`
|
78
|
+
#
|
79
|
+
# config.external_providers =
|
80
|
+
|
81
|
+
|
82
|
+
# You can change it by your local ca_file. i.e. '/etc/pki/tls/certs/ca-bundle.crt'
|
83
|
+
# Path to ca_file. By default use a internal ca-bundle.crt.
|
84
|
+
# Default: `'path/to/ca_file'`
|
85
|
+
#
|
86
|
+
# config.ca_file =
|
87
|
+
|
88
|
+
|
89
|
+
# For information about LinkedIn API:
|
90
|
+
# - user info fields go to https://developer.linkedin.com/documents/profile-fields
|
91
|
+
# - access permissions go to https://developer.linkedin.com/documents/authentication#granting
|
92
|
+
#
|
93
|
+
# config.linkedin.key = ""
|
94
|
+
# config.linkedin.secret = ""
|
95
|
+
# config.linkedin.callback_url = "http://0.0.0.0:3000/oauth/callback?provider=linkedin"
|
96
|
+
# config.linkedin.user_info_fields = ['first-name', 'last-name']
|
97
|
+
# config.linkedin.user_info_mapping = {first_name: "firstName", last_name: "lastName"}
|
98
|
+
# config.linkedin.access_permissions = ['r_basicprofile']
|
99
|
+
#
|
100
|
+
#
|
101
|
+
# For information about XING API:
|
102
|
+
# - user info fields go to https://dev.xing.com/docs/get/users/me
|
103
|
+
#
|
104
|
+
# config.xing.key = ""
|
105
|
+
# config.xing.secret = ""
|
106
|
+
# config.xing.callback_url = "http://0.0.0.0:3000/oauth/callback?provider=xing"
|
107
|
+
# config.xing.user_info_mapping = {first_name: "first_name", last_name: "last_name"}
|
108
|
+
#
|
109
|
+
#
|
110
|
+
# Twitter will not accept any requests nor redirect uri containing localhost,
|
111
|
+
# make sure you use 0.0.0.0:3000 to access your app in development
|
112
|
+
#
|
113
|
+
# config.twitter.key = ""
|
114
|
+
# config.twitter.secret = ""
|
115
|
+
# config.twitter.callback_url = "http://0.0.0.0:3000/oauth/callback?provider=twitter"
|
116
|
+
# config.twitter.user_info_mapping = {:email => "screen_name"}
|
117
|
+
#
|
118
|
+
# config.facebook.key = ""
|
119
|
+
# config.facebook.secret = ""
|
120
|
+
# config.facebook.callback_url = "http://0.0.0.0:3000/oauth/callback?provider=facebook"
|
121
|
+
# config.facebook.user_info_mapping = {:email => "name"}
|
122
|
+
# config.facebook.access_permissions = ["email", "publish_actions"]
|
123
|
+
# config.facebook.display = "page"
|
124
|
+
# config.facebook.api_version = "v2.2"
|
125
|
+
#
|
126
|
+
# config.github.key = ""
|
127
|
+
# config.github.secret = ""
|
128
|
+
# config.github.callback_url = "http://0.0.0.0:3000/oauth/callback?provider=github"
|
129
|
+
# config.github.user_info_mapping = {:email => "name"}
|
130
|
+
#
|
131
|
+
# config.google.key = ""
|
132
|
+
# config.google.secret = ""
|
133
|
+
# config.google.callback_url = "http://0.0.0.0:3000/oauth/callback?provider=google"
|
134
|
+
# config.google.user_info_mapping = {:email => "email", :username => "name"}
|
135
|
+
#
|
136
|
+
# config.vk.key = ""
|
137
|
+
# config.vk.secret = ""
|
138
|
+
# config.vk.callback_url = "http://0.0.0.0:3000/oauth/callback?provider=vk"
|
139
|
+
# config.vk.user_info_mapping = {:login => "domain", :name => "full_name"}
|
140
|
+
#
|
141
|
+
# To use liveid in development mode you have to replace mydomain.com with
|
142
|
+
# a valid domain even in development. To use a valid domain in development
|
143
|
+
# simply add your domain in your /etc/hosts file in front of 127.0.0.1
|
144
|
+
#
|
145
|
+
# config.liveid.key = ""
|
146
|
+
# config.liveid.secret = ""
|
147
|
+
# config.liveid.callback_url = "http://mydomain.com:3000/oauth/callback?provider=liveid"
|
148
|
+
# config.liveid.user_info_mapping = {:username => "name"}
|
149
|
+
|
150
|
+
# For information about JIRA API:
|
151
|
+
# https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+Example+-+OAuth+authentication
|
152
|
+
# to obtain the consumer key and the public key you can use the jira-ruby gem https://github.com/sumoheavy/jira-ruby
|
153
|
+
# or run openssl req -x509 -nodes -newkey rsa:1024 -sha1 -keyout rsakey.pem -out rsacert.pem to obtain the public key
|
154
|
+
# Make sure you have configured the application link properly
|
155
|
+
|
156
|
+
# config.jira.key = "1234567"
|
157
|
+
# config.jira.secret = "jiraTest"
|
158
|
+
# config.jira.site = "http://localhost:2990/jira/plugins/servlet/oauth"
|
159
|
+
# config.jira.signature_method = "RSA-SHA1"
|
160
|
+
# config.jira.private_key_file = "rsakey.pem"
|
161
|
+
|
162
|
+
# For information about Salesforce API:
|
163
|
+
# https://developer.salesforce.com/signup &
|
164
|
+
# https://www.salesforce.com/us/developer/docs/api_rest/
|
165
|
+
# Salesforce callback_url must be https. You can run the following to generate self-signed ssl cert
|
166
|
+
# openssl req -new -newkey rsa:2048 -sha1 -days 365 -nodes -x509 -keyout server.key -out server.crt
|
167
|
+
# Make sure you have configured the application link properly
|
168
|
+
# config.salesforce.key = '123123'
|
169
|
+
# config.salesforce.secret = 'acb123'
|
170
|
+
# config.salesforce.callback_url = "https://127.0.0.1:9292/oauth/callback?provider=salesforce"
|
171
|
+
# config.salesforce.scope = "full"
|
172
|
+
# config.salesforce.user_info_mapping = {:email => "email"}
|
173
|
+
|
174
|
+
# --- user config ---
|
175
|
+
config.user_config do |user|
|
176
|
+
# -- core --
|
177
|
+
# specify username attributes, for example: [:username, :email].
|
178
|
+
# Default: `[:email]`
|
179
|
+
#
|
180
|
+
# user.username_attribute_names =
|
181
|
+
|
182
|
+
|
183
|
+
# change *virtual* password attribute, the one which is used until an encrypted one is generated.
|
184
|
+
# Default: `:password`
|
185
|
+
#
|
186
|
+
# user.password_attribute_name =
|
187
|
+
|
188
|
+
|
189
|
+
# downcase the username before trying to authenticate, default is false
|
190
|
+
# Default: `false`
|
191
|
+
#
|
192
|
+
# user.downcase_username_before_authenticating =
|
193
|
+
|
194
|
+
|
195
|
+
# change default email attribute.
|
196
|
+
# Default: `:email`
|
197
|
+
#
|
198
|
+
# user.email_attribute_name =
|
199
|
+
|
200
|
+
|
201
|
+
# change default crypted_password attribute.
|
202
|
+
# Default: `:crypted_password`
|
203
|
+
#
|
204
|
+
# user.crypted_password_attribute_name =
|
205
|
+
|
206
|
+
|
207
|
+
# what pattern to use to join the password with the salt
|
208
|
+
# Default: `""`
|
209
|
+
#
|
210
|
+
# user.salt_join_token =
|
211
|
+
|
212
|
+
|
213
|
+
# change default salt attribute.
|
214
|
+
# Default: `:salt`
|
215
|
+
#
|
216
|
+
# user.salt_attribute_name =
|
217
|
+
|
218
|
+
|
219
|
+
# how many times to apply encryption to the password.
|
220
|
+
# Default: `nil`
|
221
|
+
#
|
222
|
+
# user.stretches =
|
223
|
+
|
224
|
+
|
225
|
+
# encryption key used to encrypt reversible encryptions such as AES256.
|
226
|
+
# WARNING: If used for users' passwords, changing this key will leave passwords undecryptable!
|
227
|
+
# Default: `nil`
|
228
|
+
#
|
229
|
+
# user.encryption_key =
|
230
|
+
|
231
|
+
|
232
|
+
# use an external encryption class.
|
233
|
+
# Default: `nil`
|
234
|
+
#
|
235
|
+
# user.custom_encryption_provider =
|
236
|
+
|
237
|
+
|
238
|
+
# encryption algorithm name. See 'encryption_algorithm=' for available options.
|
239
|
+
# Default: `:bcrypt`
|
240
|
+
#
|
241
|
+
# user.encryption_algorithm =
|
242
|
+
|
243
|
+
|
244
|
+
# make this configuration inheritable for subclasses. Useful for ActiveRecord's STI.
|
245
|
+
# Default: `false`
|
246
|
+
#
|
247
|
+
# user.subclasses_inherit_config =
|
248
|
+
|
249
|
+
|
250
|
+
# -- remember_me --
|
251
|
+
# How long in seconds the session length will be
|
252
|
+
# Default: `604800`
|
253
|
+
#
|
254
|
+
# user.remember_me_for =
|
255
|
+
|
256
|
+
|
257
|
+
# -- user_activation --
|
258
|
+
# the attribute name to hold activation state (active/pending).
|
259
|
+
# Default: `:activation_state`
|
260
|
+
#
|
261
|
+
# user.activation_state_attribute_name =
|
262
|
+
|
263
|
+
|
264
|
+
# the attribute name to hold activation code (sent by email).
|
265
|
+
# Default: `:activation_token`
|
266
|
+
#
|
267
|
+
# user.activation_token_attribute_name =
|
268
|
+
|
269
|
+
|
270
|
+
# the attribute name to hold activation code expiration date.
|
271
|
+
# Default: `:activation_token_expires_at`
|
272
|
+
#
|
273
|
+
# user.activation_token_expires_at_attribute_name =
|
274
|
+
|
275
|
+
|
276
|
+
# how many seconds before the activation code expires. nil for never expires.
|
277
|
+
# Default: `nil`
|
278
|
+
#
|
279
|
+
# user.activation_token_expiration_period =
|
280
|
+
|
281
|
+
|
282
|
+
# your mailer class. Required.
|
283
|
+
# Default: `nil`
|
284
|
+
#
|
285
|
+
# user.user_activation_mailer =
|
286
|
+
|
287
|
+
|
288
|
+
# when true sorcery will not automatically
|
289
|
+
# email activation details and allow you to
|
290
|
+
# manually handle how and when email is sent.
|
291
|
+
# Default: `false`
|
292
|
+
#
|
293
|
+
# user.activation_mailer_disabled =
|
294
|
+
|
295
|
+
|
296
|
+
# activation needed email method on your mailer class.
|
297
|
+
# Default: `:activation_needed_email`
|
298
|
+
#
|
299
|
+
# user.activation_needed_email_method_name =
|
300
|
+
|
301
|
+
|
302
|
+
# activation success email method on your mailer class.
|
303
|
+
# Default: `:activation_success_email`
|
304
|
+
#
|
305
|
+
# user.activation_success_email_method_name =
|
306
|
+
|
307
|
+
|
308
|
+
# do you want to prevent or allow users that did not activate by email to login?
|
309
|
+
# Default: `true`
|
310
|
+
#
|
311
|
+
# user.prevent_non_active_users_to_login =
|
312
|
+
|
313
|
+
|
314
|
+
# -- reset_password --
|
315
|
+
# reset password code attribute name.
|
316
|
+
# Default: `:reset_password_token`
|
317
|
+
#
|
318
|
+
# user.reset_password_token_attribute_name =
|
319
|
+
|
320
|
+
|
321
|
+
# expires at attribute name.
|
322
|
+
# Default: `:reset_password_token_expires_at`
|
323
|
+
#
|
324
|
+
# user.reset_password_token_expires_at_attribute_name =
|
325
|
+
|
326
|
+
|
327
|
+
# when was email sent, used for hammering protection.
|
328
|
+
# Default: `:reset_password_email_sent_at`
|
329
|
+
#
|
330
|
+
# user.reset_password_email_sent_at_attribute_name =
|
331
|
+
|
332
|
+
|
333
|
+
# mailer class. Needed.
|
334
|
+
# Default: `nil`
|
335
|
+
#
|
336
|
+
# user.reset_password_mailer =
|
337
|
+
|
338
|
+
|
339
|
+
# reset password email method on your mailer class.
|
340
|
+
# Default: `:reset_password_email`
|
341
|
+
#
|
342
|
+
# user.reset_password_email_method_name =
|
343
|
+
|
344
|
+
|
345
|
+
# when true sorcery will not automatically
|
346
|
+
# email password reset details and allow you to
|
347
|
+
# manually handle how and when email is sent
|
348
|
+
# Default: `false`
|
349
|
+
#
|
350
|
+
# user.reset_password_mailer_disabled =
|
351
|
+
|
352
|
+
|
353
|
+
# how many seconds before the reset request expires. nil for never expires.
|
354
|
+
# Default: `nil`
|
355
|
+
#
|
356
|
+
# user.reset_password_expiration_period =
|
357
|
+
|
358
|
+
|
359
|
+
# hammering protection, how long in seconds to wait before allowing another email to be sent.
|
360
|
+
# Default: `5 * 60`
|
361
|
+
#
|
362
|
+
# user.reset_password_time_between_emails =
|
363
|
+
|
364
|
+
|
365
|
+
# -- brute_force_protection --
|
366
|
+
# Failed logins attribute name.
|
367
|
+
# Default: `:failed_logins_count`
|
368
|
+
#
|
369
|
+
# user.failed_logins_count_attribute_name =
|
370
|
+
|
371
|
+
|
372
|
+
# This field indicates whether user is banned and when it will be active again.
|
373
|
+
# Default: `:lock_expires_at`
|
374
|
+
#
|
375
|
+
# user.lock_expires_at_attribute_name =
|
376
|
+
|
377
|
+
|
378
|
+
# How many failed logins allowed.
|
379
|
+
# Default: `50`
|
380
|
+
#
|
381
|
+
# user.consecutive_login_retries_amount_limit =
|
382
|
+
|
383
|
+
|
384
|
+
# How long the user should be banned. in seconds. 0 for permanent.
|
385
|
+
# Default: `60 * 60`
|
386
|
+
#
|
387
|
+
# user.login_lock_time_period =
|
388
|
+
|
389
|
+
# Unlock token attribute name
|
390
|
+
# Default: `:unlock_token`
|
391
|
+
#
|
392
|
+
# user.unlock_token_attribute_name =
|
393
|
+
|
394
|
+
# Unlock token mailer method
|
395
|
+
# Default: `:send_unlock_token_email`
|
396
|
+
#
|
397
|
+
# user.unlock_token_email_method_name =
|
398
|
+
|
399
|
+
# when true sorcery will not automatically
|
400
|
+
# send email with unlock token
|
401
|
+
# Default: `false`
|
402
|
+
#
|
403
|
+
# user.unlock_token_mailer_disabled = true
|
404
|
+
|
405
|
+
# Unlock token mailer class
|
406
|
+
# Default: `nil`
|
407
|
+
#
|
408
|
+
# user.unlock_token_mailer = UserMailer
|
409
|
+
|
410
|
+
# -- activity logging --
|
411
|
+
# Last login attribute name.
|
412
|
+
# Default: `:last_login_at`
|
413
|
+
#
|
414
|
+
# user.last_login_at_attribute_name =
|
415
|
+
|
416
|
+
|
417
|
+
# Last logout attribute name.
|
418
|
+
# Default: `:last_logout_at`
|
419
|
+
#
|
420
|
+
# user.last_logout_at_attribute_name =
|
421
|
+
|
422
|
+
|
423
|
+
# Last activity attribute name.
|
424
|
+
# Default: `:last_activity_at`
|
425
|
+
#
|
426
|
+
# user.last_activity_at_attribute_name =
|
427
|
+
|
428
|
+
|
429
|
+
# How long since last activity is the user defined logged out?
|
430
|
+
# Default: `10 * 60`
|
431
|
+
#
|
432
|
+
# user.activity_timeout =
|
433
|
+
|
434
|
+
|
435
|
+
# -- external --
|
436
|
+
# Class which holds the various external provider data for this user.
|
437
|
+
# Default: `nil`
|
438
|
+
#
|
439
|
+
# user.authentications_class =
|
440
|
+
|
441
|
+
|
442
|
+
# User's identifier in authentications class.
|
443
|
+
# Default: `:user_id`
|
444
|
+
#
|
445
|
+
# user.authentications_user_id_attribute_name =
|
446
|
+
|
447
|
+
|
448
|
+
# Provider's identifier in authentications class.
|
449
|
+
# Default: `:provider`
|
450
|
+
#
|
451
|
+
# user.provider_attribute_name =
|
452
|
+
|
453
|
+
|
454
|
+
# User's external unique identifier in authentications class.
|
455
|
+
# Default: `:uid`
|
456
|
+
#
|
457
|
+
# user.provider_uid_attribute_name =
|
458
|
+
end
|
459
|
+
|
460
|
+
# This line must come after the 'user config' block.
|
461
|
+
# Define which model authenticates with sorcery.
|
462
|
+
config.user_class = "User"
|
463
|
+
end
|
@@ -4,11 +4,11 @@
|
|
4
4
|
#
|
5
5
|
# To use the locales, use `I18n.t`:
|
6
6
|
#
|
7
|
-
# I18n.t
|
7
|
+
# I18n.t "hello"
|
8
8
|
#
|
9
9
|
# In views, this is aliased to just `t`:
|
10
10
|
#
|
11
|
-
# <%= t(
|
11
|
+
# <%= t("hello") %>
|
12
12
|
#
|
13
13
|
# To use a different locale, set it with `I18n.locale`:
|
14
14
|
#
|
@@ -16,8 +16,18 @@
|
|
16
16
|
#
|
17
17
|
# This would use the information in config/locales/es.yml.
|
18
18
|
#
|
19
|
+
# The following keys must be escaped otherwise they will not be retrieved by
|
20
|
+
# the default I18n backend:
|
21
|
+
#
|
22
|
+
# true, false, on, off, yes, no
|
23
|
+
#
|
24
|
+
# Instead, surround them with single quotes.
|
25
|
+
#
|
26
|
+
# en:
|
27
|
+
# "true": "foo"
|
28
|
+
#
|
19
29
|
# To learn more, please read the Rails Internationalization guide
|
20
|
-
# available at
|
30
|
+
# available at https://guides.rubyonrails.org/i18n.html.
|
21
31
|
|
22
32
|
en:
|
23
33
|
hello: "Hello world"
|
File without changes
|
@@ -0,0 +1,34 @@
|
|
1
|
+
test:
|
2
|
+
service: Disk
|
3
|
+
root: <%= Rails.root.join("tmp/storage") %>
|
4
|
+
|
5
|
+
local:
|
6
|
+
service: Disk
|
7
|
+
root: <%= Rails.root.join("storage") %>
|
8
|
+
|
9
|
+
# Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
|
10
|
+
# amazon:
|
11
|
+
# service: S3
|
12
|
+
# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
|
13
|
+
# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
|
14
|
+
# region: us-east-1
|
15
|
+
# bucket: your_own_bucket-<%= Rails.env %>
|
16
|
+
|
17
|
+
# Remember not to checkin your GCS keyfile to a repository
|
18
|
+
# google:
|
19
|
+
# service: GCS
|
20
|
+
# project: your_project
|
21
|
+
# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
|
22
|
+
# bucket: your_own_bucket-<%= Rails.env %>
|
23
|
+
|
24
|
+
# Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
|
25
|
+
# microsoft:
|
26
|
+
# service: AzureStorage
|
27
|
+
# storage_account_name: your_account_name
|
28
|
+
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
|
29
|
+
# container: your_container_name-<%= Rails.env %>
|
30
|
+
|
31
|
+
# mirror:
|
32
|
+
# service: Mirror
|
33
|
+
# primary: local
|
34
|
+
# mirrors: [ amazon, google, microsoft ]
|
@@ -0,0 +1,20 @@
|
|
1
|
+
class PopulateTestUsers < ActiveRecord::Migration[6.1]
|
2
|
+
def change
|
3
|
+
100.times { |t| User.create(name: gen_name(t), age: rand(100), email: gen_email(t), role: gen_role, password: '12345678') }
|
4
|
+
end
|
5
|
+
|
6
|
+
private
|
7
|
+
|
8
|
+
def gen_name(number)
|
9
|
+
['Igor', 'Michael' 'John', 'Stan', 'Bob', 'Kris', 'Alan'].sample + ' ' + number.to_s
|
10
|
+
end
|
11
|
+
|
12
|
+
def gen_email(number)
|
13
|
+
email = ['Igor', 'Michael' 'John', 'Stan', 'Bob', 'Kris', 'Alan'].sample + number.to_s + '@gmail.com'
|
14
|
+
email.downcase
|
15
|
+
end
|
16
|
+
|
17
|
+
def gen_role
|
18
|
+
['admin', 'user', 'moderator'].sample
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# This file is auto-generated from the current state of the database. Instead
|
2
|
+
# of editing this file, please use the migrations feature of Active Record to
|
3
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
4
|
+
#
|
5
|
+
# This file is the source Rails uses to define your schema when running `bin/rails
|
6
|
+
# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to
|
7
|
+
# be faster and is potentially less error prone than running all of your
|
8
|
+
# migrations from scratch. Old migrations may fail to apply correctly if those
|
9
|
+
# migrations use external dependencies or application code.
|
10
|
+
#
|
11
|
+
# It's strongly recommended that you check this file into your version control system.
|
12
|
+
|
13
|
+
ActiveRecord::Schema.define(version: 2022_08_27_040518) do
|
14
|
+
|
15
|
+
create_table "users", force: :cascade do |t|
|
16
|
+
t.string "name"
|
17
|
+
t.integer "age"
|
18
|
+
t.datetime "created_at", precision: 6, null: false
|
19
|
+
t.datetime "updated_at", precision: 6, null: false
|
20
|
+
t.string "email", default: "", null: false
|
21
|
+
t.string "encrypted_password", default: "", null: false
|
22
|
+
t.string "reset_password_token"
|
23
|
+
t.datetime "reset_password_sent_at"
|
24
|
+
t.datetime "remember_created_at"
|
25
|
+
t.integer "sign_in_count", default: 0, null: false
|
26
|
+
t.datetime "current_sign_in_at"
|
27
|
+
t.datetime "last_sign_in_at"
|
28
|
+
t.string "current_sign_in_ip"
|
29
|
+
t.string "last_sign_in_ip"
|
30
|
+
t.string "role"
|
31
|
+
t.string "crypted_password"
|
32
|
+
t.string "salt"
|
33
|
+
t.index ["email"], name: "index_users_on_email", unique: true
|
34
|
+
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
@@ -4,7 +4,7 @@
|
|
4
4
|
<title>The page you were looking for doesn't exist (404)</title>
|
5
5
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
6
|
<style>
|
7
|
-
|
7
|
+
.rails-default-error-page {
|
8
8
|
background-color: #EFEFEF;
|
9
9
|
color: #2E2F30;
|
10
10
|
text-align: center;
|
@@ -12,13 +12,13 @@
|
|
12
12
|
margin: 0;
|
13
13
|
}
|
14
14
|
|
15
|
-
div.dialog {
|
15
|
+
.rails-default-error-page div.dialog {
|
16
16
|
width: 95%;
|
17
17
|
max-width: 33em;
|
18
18
|
margin: 4em auto 0;
|
19
19
|
}
|
20
20
|
|
21
|
-
div.dialog > div {
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
22
|
border: 1px solid #CCC;
|
23
23
|
border-right-color: #999;
|
24
24
|
border-left-color: #999;
|
@@ -31,13 +31,13 @@
|
|
31
31
|
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
32
|
}
|
33
33
|
|
34
|
-
h1 {
|
34
|
+
.rails-default-error-page h1 {
|
35
35
|
font-size: 100%;
|
36
36
|
color: #730E15;
|
37
37
|
line-height: 1.5em;
|
38
38
|
}
|
39
39
|
|
40
|
-
div.dialog > p {
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
41
|
margin: 0 0 1em;
|
42
42
|
padding: 1em;
|
43
43
|
background-color: #F7F7F7;
|
@@ -54,7 +54,7 @@
|
|
54
54
|
</style>
|
55
55
|
</head>
|
56
56
|
|
57
|
-
<body>
|
57
|
+
<body class="rails-default-error-page">
|
58
58
|
<!-- This file lives in public/404.html -->
|
59
59
|
<div class="dialog">
|
60
60
|
<div>
|