├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .tool-versions ├── Appraisals ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── app ├── jobs │ └── stored_session │ │ └── expire_sessions_job.rb └── models │ └── stored_session │ ├── record.rb │ └── session.rb ├── bin ├── appraisal ├── brakeman ├── rails ├── rake ├── rubocop └── setup ├── config ├── locales │ └── stored_session.en.yml └── routes.rb ├── db └── migrate │ └── 20241103224006_create_stored_sessions.rb ├── docker-compose.yml ├── gemfiles ├── rails_8_0.gemfile ├── rails_8_0.gemfile.lock ├── rails_main.gemfile └── rails_main.gemfile.lock ├── lib ├── action_dispatch │ └── session │ │ └── stored_session_store.rb ├── stored_session.rb ├── stored_session │ ├── configuration.rb │ ├── deprecator.rb │ ├── engine.rb │ ├── log_subscriber.rb │ ├── model.rb │ ├── store.rb │ ├── store │ │ ├── instrumentation.rb │ │ └── logging.rb │ ├── test_helper.rb │ └── version.rb └── tasks │ └── stored_session_tasks.rake ├── stored_session.gemspec └── test ├── benchmarks └── comparison_benchmark.rb ├── dummy ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ └── concerns │ │ │ └── .keep │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ └── concerns │ │ │ └── .keep │ └── views │ │ ├── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ │ ├── pwa │ │ ├── manifest.json.erb │ │ └── service-worker.js │ │ └── tests │ │ └── index.html.erb ├── bin │ ├── dev │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── credentials.yml.enc │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── content_security_policy.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ └── session_store.rb │ ├── locales │ │ └── en.yml │ ├── master.key │ ├── puma.rb │ ├── routes.rb │ └── storage.yml ├── db │ ├── migrate │ │ └── 20241110033446_add_sessions_table.rb │ └── schema.rb ├── log │ └── .keep └── public │ ├── 400.html │ ├── 404.html │ ├── 406-unsupported-browser.html │ ├── 422.html │ ├── 500.html │ ├── icon.png │ └── icon.svg ├── fixtures └── .keep ├── jobs └── stored_session │ └── expire_sessions_job_test.rb ├── lib ├── stored_session │ ├── configuration_test.rb │ ├── engine_test.rb │ ├── log_subscriber_test.rb │ ├── model_test.rb │ ├── store │ │ ├── instrumentation_test.rb │ │ └── logging_test.rb │ ├── store_test.rb │ └── version_test.rb ├── stored_session_test.rb └── tasks │ └── stored_session_tasks_test.rb ├── models └── stored_session │ ├── record_test.rb │ └── session_test.rb └── test_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.6 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.2.6 2 | -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/jobs/stored_session/expire_sessions_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/app/jobs/stored_session/expire_sessions_job.rb -------------------------------------------------------------------------------- /app/models/stored_session/record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/app/models/stored_session/record.rb -------------------------------------------------------------------------------- /app/models/stored_session/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/app/models/stored_session/session.rb -------------------------------------------------------------------------------- /bin/appraisal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/bin/appraisal -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/bin/setup -------------------------------------------------------------------------------- /config/locales/stored_session.en.yml: -------------------------------------------------------------------------------- 1 | --- 2 | en: 3 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | # StoredSession::Engine.routes.draw do 2 | # end 3 | -------------------------------------------------------------------------------- /db/migrate/20241103224006_create_stored_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/db/migrate/20241103224006_create_stored_sessions.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gemfiles/rails_8_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/gemfiles/rails_8_0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_8_0.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/gemfiles/rails_8_0.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_main.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/gemfiles/rails_main.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_main.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/gemfiles/rails_main.gemfile.lock -------------------------------------------------------------------------------- /lib/action_dispatch/session/stored_session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/action_dispatch/session/stored_session_store.rb -------------------------------------------------------------------------------- /lib/stored_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/stored_session.rb -------------------------------------------------------------------------------- /lib/stored_session/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/stored_session/configuration.rb -------------------------------------------------------------------------------- /lib/stored_session/deprecator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/stored_session/deprecator.rb -------------------------------------------------------------------------------- /lib/stored_session/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/stored_session/engine.rb -------------------------------------------------------------------------------- /lib/stored_session/log_subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/stored_session/log_subscriber.rb -------------------------------------------------------------------------------- /lib/stored_session/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/stored_session/model.rb -------------------------------------------------------------------------------- /lib/stored_session/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/stored_session/store.rb -------------------------------------------------------------------------------- /lib/stored_session/store/instrumentation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/stored_session/store/instrumentation.rb -------------------------------------------------------------------------------- /lib/stored_session/store/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/stored_session/store/logging.rb -------------------------------------------------------------------------------- /lib/stored_session/test_helper.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/stored_session/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/stored_session/version.rb -------------------------------------------------------------------------------- /lib/tasks/stored_session_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/lib/tasks/stored_session_tasks.rake -------------------------------------------------------------------------------- /stored_session.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/stored_session.gemspec -------------------------------------------------------------------------------- /test/benchmarks/comparison_benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/benchmarks/comparison_benchmark.rb -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/dummy/app/views/pwa/manifest.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/views/pwa/manifest.json.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pwa/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/app/views/pwa/service-worker.js -------------------------------------------------------------------------------- /test/dummy/app/views/tests/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/bin/dev -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/credentials.yml.enc -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/master.key: -------------------------------------------------------------------------------- 1 | 61a9cb3f7938e29a592976294e82eedd -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/config/storage.yml -------------------------------------------------------------------------------- /test/dummy/db/migrate/20241110033446_add_sessions_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/db/migrate/20241110033446_add_sessions_table.rb -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/public/400.html -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/406-unsupported-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/public/406-unsupported-browser.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/public/icon.png -------------------------------------------------------------------------------- /test/dummy/public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/dummy/public/icon.svg -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/jobs/stored_session/expire_sessions_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/jobs/stored_session/expire_sessions_job_test.rb -------------------------------------------------------------------------------- /test/lib/stored_session/configuration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/lib/stored_session/configuration_test.rb -------------------------------------------------------------------------------- /test/lib/stored_session/engine_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/lib/stored_session/engine_test.rb -------------------------------------------------------------------------------- /test/lib/stored_session/log_subscriber_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/lib/stored_session/log_subscriber_test.rb -------------------------------------------------------------------------------- /test/lib/stored_session/model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/lib/stored_session/model_test.rb -------------------------------------------------------------------------------- /test/lib/stored_session/store/instrumentation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/lib/stored_session/store/instrumentation_test.rb -------------------------------------------------------------------------------- /test/lib/stored_session/store/logging_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/lib/stored_session/store/logging_test.rb -------------------------------------------------------------------------------- /test/lib/stored_session/store_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/lib/stored_session/store_test.rb -------------------------------------------------------------------------------- /test/lib/stored_session/version_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/lib/stored_session/version_test.rb -------------------------------------------------------------------------------- /test/lib/stored_session_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/lib/stored_session_test.rb -------------------------------------------------------------------------------- /test/lib/tasks/stored_session_tasks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/lib/tasks/stored_session_tasks_test.rb -------------------------------------------------------------------------------- /test/models/stored_session/record_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/models/stored_session/record_test.rb -------------------------------------------------------------------------------- /test/models/stored_session/session_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/models/stored_session/session_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhb/stored_session/HEAD/test/test_helper.rb --------------------------------------------------------------------------------