devise-multi_email 3.0.1 → 3.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +17 -0
- data/.github/workflows/ruby_spec.yml +41 -0
- data/.gitignore +4 -0
- data/Gemfile +1 -2
- data/README.md +5 -5
- data/devise-multi-email.code-workspace +8 -0
- data/devise-multi_email.gemspec +14 -13
- data/examples/{rails5_app → rails7_app}/Gemfile +5 -5
- data/examples/rails7_app/Gemfile.lock +442 -0
- data/examples/rails8_0_app/.gitignore +21 -0
- data/examples/rails8_0_app/Gemfile +55 -0
- data/examples/rails8_0_app/Gemfile.lock +442 -0
- data/examples/rails8_0_app/README.md +24 -0
- data/examples/rails8_0_app/Rakefile +6 -0
- data/examples/rails8_0_app/app/assets/config/manifest.js +3 -0
- data/examples/rails8_0_app/app/assets/images/.keep +0 -0
- data/examples/rails8_0_app/app/assets/javascripts/application.js +16 -0
- data/examples/rails8_0_app/app/assets/javascripts/cable.js +13 -0
- data/examples/rails8_0_app/app/assets/javascripts/channels/.keep +0 -0
- data/examples/rails8_0_app/app/assets/stylesheets/application.css +15 -0
- data/examples/rails8_0_app/app/channels/application_cable/channel.rb +4 -0
- data/examples/rails8_0_app/app/channels/application_cable/connection.rb +4 -0
- data/examples/rails8_0_app/app/controllers/application_controller.rb +3 -0
- data/examples/rails8_0_app/app/controllers/concerns/.keep +0 -0
- data/examples/rails8_0_app/app/helpers/application_helper.rb +2 -0
- data/examples/rails8_0_app/app/jobs/application_job.rb +2 -0
- data/examples/rails8_0_app/app/mailers/application_mailer.rb +4 -0
- data/examples/rails8_0_app/app/models/application_record.rb +3 -0
- data/examples/rails8_0_app/app/models/concerns/.keep +0 -0
- data/examples/rails8_0_app/app/models/email.rb +5 -0
- data/examples/rails8_0_app/app/models/user.rb +9 -0
- data/examples/rails8_0_app/app/views/layouts/application.html.erb +14 -0
- data/examples/rails8_0_app/app/views/layouts/mailer.html.erb +13 -0
- data/examples/rails8_0_app/app/views/layouts/mailer.text.erb +1 -0
- data/examples/rails8_0_app/bin/bundle +3 -0
- data/examples/rails8_0_app/bin/rails +4 -0
- data/examples/rails8_0_app/bin/rake +4 -0
- data/examples/rails8_0_app/bin/setup +34 -0
- data/examples/rails8_0_app/bin/update +29 -0
- data/examples/rails8_0_app/config/application.rb +15 -0
- data/examples/rails8_0_app/config/boot.rb +3 -0
- data/examples/rails8_0_app/config/cable.yml +9 -0
- data/examples/rails8_0_app/config/database.yml +25 -0
- data/examples/rails8_0_app/config/environment.rb +5 -0
- data/examples/rails8_0_app/config/environments/development.rb +56 -0
- data/examples/rails8_0_app/config/environments/production.rb +86 -0
- data/examples/rails8_0_app/config/environments/test.rb +42 -0
- data/examples/rails8_0_app/config/initializers/application_controller_renderer.rb +6 -0
- data/examples/rails8_0_app/config/initializers/assets.rb +11 -0
- data/examples/rails8_0_app/config/initializers/backtrace_silencers.rb +7 -0
- data/examples/rails8_0_app/config/initializers/cookies_serializer.rb +5 -0
- data/examples/rails8_0_app/config/initializers/devise.rb +274 -0
- data/examples/rails8_0_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/examples/rails8_0_app/config/initializers/inflections.rb +16 -0
- data/examples/rails8_0_app/config/initializers/mime_types.rb +4 -0
- data/examples/rails8_0_app/config/initializers/new_framework_defaults.rb +24 -0
- data/examples/rails8_0_app/config/initializers/session_store.rb +3 -0
- data/examples/rails8_0_app/config/initializers/wrap_parameters.rb +14 -0
- data/examples/rails8_0_app/config/locales/devise.en.yml +62 -0
- data/examples/rails8_0_app/config/locales/en.yml +23 -0
- data/examples/rails8_0_app/config/puma.rb +47 -0
- data/examples/rails8_0_app/config/routes.rb +4 -0
- data/examples/rails8_0_app/config/secrets.yml +22 -0
- data/examples/rails8_0_app/config/spring.rb +6 -0
- data/examples/rails8_0_app/config.ru +5 -0
- data/examples/rails8_0_app/db/migrate/20170307140813_devise_create_users.rb +49 -0
- data/examples/rails8_0_app/db/migrate/20170307145547_add_password_salt_to_users.rb +5 -0
- data/examples/rails8_0_app/db/schema.rb +44 -0
- data/examples/rails8_0_app/db/seeds.rb +7 -0
- data/examples/rails8_0_app/lib/assets/.keep +0 -0
- data/examples/rails8_0_app/lib/tasks/.keep +0 -0
- data/examples/rails8_0_app/log/.keep +0 -0
- data/examples/rails8_0_app/public/404.html +67 -0
- data/examples/rails8_0_app/public/422.html +67 -0
- data/examples/rails8_0_app/public/500.html +66 -0
- data/examples/rails8_0_app/public/apple-touch-icon-precomposed.png +0 -0
- data/examples/rails8_0_app/public/apple-touch-icon.png +0 -0
- data/examples/rails8_0_app/public/favicon.ico +0 -0
- data/examples/rails8_0_app/public/robots.txt +5 -0
- data/examples/rails8_0_app/test/controllers/.keep +0 -0
- data/examples/rails8_0_app/test/fixtures/.keep +0 -0
- data/examples/rails8_0_app/test/fixtures/files/.keep +0 -0
- data/examples/rails8_0_app/test/helpers/.keep +0 -0
- data/examples/rails8_0_app/test/integration/.keep +0 -0
- data/examples/rails8_0_app/test/mailers/.keep +0 -0
- data/examples/rails8_0_app/test/models/.keep +0 -0
- data/examples/rails8_0_app/test/test_helper.rb +10 -0
- data/examples/rails8_0_app/tmp/.keep +0 -0
- data/examples/rails8_0_app/vendor/assets/javascripts/.keep +0 -0
- data/examples/rails8_0_app/vendor/assets/stylesheets/.keep +0 -0
- data/examples/rails8_1_app/.gitignore +21 -0
- data/examples/rails8_1_app/Gemfile +55 -0
- data/examples/rails8_1_app/Gemfile.lock +442 -0
- data/examples/rails8_1_app/README.md +24 -0
- data/examples/rails8_1_app/Rakefile +6 -0
- data/examples/rails8_1_app/app/assets/config/manifest.js +3 -0
- data/examples/rails8_1_app/app/assets/images/.keep +0 -0
- data/examples/rails8_1_app/app/assets/javascripts/application.js +16 -0
- data/examples/rails8_1_app/app/assets/javascripts/cable.js +13 -0
- data/examples/rails8_1_app/app/assets/javascripts/channels/.keep +0 -0
- data/examples/rails8_1_app/app/assets/stylesheets/application.css +15 -0
- data/examples/rails8_1_app/app/channels/application_cable/channel.rb +4 -0
- data/examples/rails8_1_app/app/channels/application_cable/connection.rb +4 -0
- data/examples/rails8_1_app/app/controllers/application_controller.rb +3 -0
- data/examples/rails8_1_app/app/controllers/concerns/.keep +0 -0
- data/examples/rails8_1_app/app/helpers/application_helper.rb +2 -0
- data/examples/rails8_1_app/app/jobs/application_job.rb +2 -0
- data/examples/rails8_1_app/app/mailers/application_mailer.rb +4 -0
- data/examples/rails8_1_app/app/models/application_record.rb +3 -0
- data/examples/rails8_1_app/app/models/concerns/.keep +0 -0
- data/examples/rails8_1_app/app/models/email.rb +5 -0
- data/examples/rails8_1_app/app/models/user.rb +9 -0
- data/examples/rails8_1_app/app/views/layouts/application.html.erb +14 -0
- data/examples/rails8_1_app/app/views/layouts/mailer.html.erb +13 -0
- data/examples/rails8_1_app/app/views/layouts/mailer.text.erb +1 -0
- data/examples/rails8_1_app/bin/bundle +3 -0
- data/examples/rails8_1_app/bin/rails +4 -0
- data/examples/rails8_1_app/bin/rake +4 -0
- data/examples/rails8_1_app/bin/setup +34 -0
- data/examples/rails8_1_app/bin/update +29 -0
- data/examples/rails8_1_app/config/application.rb +15 -0
- data/examples/rails8_1_app/config/boot.rb +3 -0
- data/examples/rails8_1_app/config/cable.yml +9 -0
- data/examples/rails8_1_app/config/database.yml +25 -0
- data/examples/rails8_1_app/config/environment.rb +5 -0
- data/examples/rails8_1_app/config/environments/development.rb +56 -0
- data/examples/rails8_1_app/config/environments/production.rb +86 -0
- data/examples/rails8_1_app/config/environments/test.rb +42 -0
- data/examples/rails8_1_app/config/initializers/application_controller_renderer.rb +6 -0
- data/examples/rails8_1_app/config/initializers/assets.rb +11 -0
- data/examples/rails8_1_app/config/initializers/backtrace_silencers.rb +7 -0
- data/examples/rails8_1_app/config/initializers/cookies_serializer.rb +5 -0
- data/examples/rails8_1_app/config/initializers/devise.rb +274 -0
- data/examples/rails8_1_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/examples/rails8_1_app/config/initializers/inflections.rb +16 -0
- data/examples/rails8_1_app/config/initializers/mime_types.rb +4 -0
- data/examples/rails8_1_app/config/initializers/new_framework_defaults.rb +24 -0
- data/examples/rails8_1_app/config/initializers/session_store.rb +3 -0
- data/examples/rails8_1_app/config/initializers/wrap_parameters.rb +14 -0
- data/examples/rails8_1_app/config/locales/devise.en.yml +62 -0
- data/examples/rails8_1_app/config/locales/en.yml +23 -0
- data/examples/rails8_1_app/config/puma.rb +47 -0
- data/examples/rails8_1_app/config/routes.rb +4 -0
- data/examples/rails8_1_app/config/secrets.yml +22 -0
- data/examples/rails8_1_app/config/spring.rb +6 -0
- data/examples/rails8_1_app/config.ru +5 -0
- data/examples/rails8_1_app/db/migrate/20170307140813_devise_create_users.rb +49 -0
- data/examples/rails8_1_app/db/migrate/20170307145547_add_password_salt_to_users.rb +5 -0
- data/examples/rails8_1_app/db/schema.rb +44 -0
- data/examples/rails8_1_app/db/seeds.rb +7 -0
- data/examples/rails8_1_app/lib/assets/.keep +0 -0
- data/examples/rails8_1_app/lib/tasks/.keep +0 -0
- data/examples/rails8_1_app/log/.keep +0 -0
- data/examples/rails8_1_app/public/404.html +67 -0
- data/examples/rails8_1_app/public/422.html +67 -0
- data/examples/rails8_1_app/public/500.html +66 -0
- data/examples/rails8_1_app/public/apple-touch-icon-precomposed.png +0 -0
- data/examples/rails8_1_app/public/apple-touch-icon.png +0 -0
- data/examples/rails8_1_app/public/favicon.ico +0 -0
- data/examples/rails8_1_app/public/robots.txt +5 -0
- data/examples/rails8_1_app/test/controllers/.keep +0 -0
- data/examples/rails8_1_app/test/fixtures/.keep +0 -0
- data/examples/rails8_1_app/test/fixtures/files/.keep +0 -0
- data/examples/rails8_1_app/test/helpers/.keep +0 -0
- data/examples/rails8_1_app/test/integration/.keep +0 -0
- data/examples/rails8_1_app/test/mailers/.keep +0 -0
- data/examples/rails8_1_app/test/models/.keep +0 -0
- data/examples/rails8_1_app/test/test_helper.rb +10 -0
- data/examples/rails8_1_app/tmp/.keep +0 -0
- data/examples/rails8_1_app/vendor/assets/javascripts/.keep +0 -0
- data/examples/rails8_1_app/vendor/assets/stylesheets/.keep +0 -0
- data/gemfiles/{rails_5_2.gemfile → rails_7_0.gemfile} +1 -1
- data/gemfiles/{rails_5_1.gemfile → rails_8_0.gemfile} +1 -1
- data/lib/devise/multi_email/models/validatable.rb +2 -7
- data/lib/devise/multi_email/version.rb +1 -1
- data/mise.toml +2 -0
- metadata +288 -124
- data/examples/rails5_app/Gemfile.lock +0 -189
- data/gemfiles/rails_6_0.gemfile +0 -5
- /data/examples/{rails5_app → rails7_app}/.gitignore +0 -0
- /data/examples/{rails5_app → rails7_app}/README.md +0 -0
- /data/examples/{rails5_app → rails7_app}/Rakefile +0 -0
- /data/examples/{rails5_app → rails7_app}/app/assets/config/manifest.js +0 -0
- /data/examples/{rails5_app → rails7_app}/app/assets/images/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/app/assets/javascripts/application.js +0 -0
- /data/examples/{rails5_app → rails7_app}/app/assets/javascripts/cable.js +0 -0
- /data/examples/{rails5_app → rails7_app}/app/assets/javascripts/channels/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/app/assets/stylesheets/application.css +0 -0
- /data/examples/{rails5_app → rails7_app}/app/channels/application_cable/channel.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/channels/application_cable/connection.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/controllers/application_controller.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/controllers/concerns/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/app/helpers/application_helper.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/jobs/application_job.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/mailers/application_mailer.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/models/application_record.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/models/concerns/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/app/models/email.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/models/user.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/views/layouts/application.html.erb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/views/layouts/mailer.html.erb +0 -0
- /data/examples/{rails5_app → rails7_app}/app/views/layouts/mailer.text.erb +0 -0
- /data/examples/{rails5_app → rails7_app}/bin/bundle +0 -0
- /data/examples/{rails5_app → rails7_app}/bin/rails +0 -0
- /data/examples/{rails5_app → rails7_app}/bin/rake +0 -0
- /data/examples/{rails5_app → rails7_app}/bin/setup +0 -0
- /data/examples/{rails5_app → rails7_app}/bin/update +0 -0
- /data/examples/{rails5_app → rails7_app}/config/application.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/boot.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/cable.yml +0 -0
- /data/examples/{rails5_app → rails7_app}/config/database.yml +0 -0
- /data/examples/{rails5_app → rails7_app}/config/environment.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/environments/development.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/environments/production.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/environments/test.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/application_controller_renderer.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/assets.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/backtrace_silencers.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/cookies_serializer.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/devise.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/filter_parameter_logging.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/inflections.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/mime_types.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/new_framework_defaults.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/session_store.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/initializers/wrap_parameters.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/locales/devise.en.yml +0 -0
- /data/examples/{rails5_app → rails7_app}/config/locales/en.yml +0 -0
- /data/examples/{rails5_app → rails7_app}/config/puma.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/routes.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config/secrets.yml +0 -0
- /data/examples/{rails5_app → rails7_app}/config/spring.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/config.ru +0 -0
- /data/examples/{rails5_app → rails7_app}/db/migrate/20170307140813_devise_create_users.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/db/migrate/20170307145547_add_password_salt_to_users.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/db/schema.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/db/seeds.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/lib/assets/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/lib/tasks/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/log/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/public/404.html +0 -0
- /data/examples/{rails5_app → rails7_app}/public/422.html +0 -0
- /data/examples/{rails5_app → rails7_app}/public/500.html +0 -0
- /data/examples/{rails5_app → rails7_app}/public/apple-touch-icon-precomposed.png +0 -0
- /data/examples/{rails5_app → rails7_app}/public/apple-touch-icon.png +0 -0
- /data/examples/{rails5_app → rails7_app}/public/favicon.ico +0 -0
- /data/examples/{rails5_app → rails7_app}/public/robots.txt +0 -0
- /data/examples/{rails5_app → rails7_app}/test/controllers/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/test/fixtures/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/test/fixtures/files/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/test/helpers/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/test/integration/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/test/mailers/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/test/models/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/test/test_helper.rb +0 -0
- /data/examples/{rails5_app → rails7_app}/tmp/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/vendor/assets/javascripts/.keep +0 -0
- /data/examples/{rails5_app → rails7_app}/vendor/assets/stylesheets/.keep +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c394efaff65c8f809f5928486d36529350e0c8ce11ade1305713767c540233c5
|
|
4
|
+
data.tar.gz: f9fb103bcd1e175677b2201de90e4c7cd1cff17fa6bdf6b959870fcbe38134a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1292c698e3da57bbd0aad9dbba295853836dbe309e7ce6bb85d043bed1a17aa746cc586d50a692aea705f0027c99539c1c25977f5f0f411597a68b803898451a
|
|
7
|
+
data.tar.gz: 50d699bdd938bea0eb326e25e90beeeeb8e665c7a0b5d7f7c06cab074e93acabea901afa1388898b2dc6809fb97b5e223b5d831c72946c7af11df003048e11d3
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
|
3
|
+
# Please see the documentation for all configuration options:
|
|
4
|
+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
5
|
+
|
|
6
|
+
version: 2
|
|
7
|
+
updates:
|
|
8
|
+
- package-ecosystem: "bundler" # See documentation for possible values
|
|
9
|
+
directories: # Location of package manifests
|
|
10
|
+
- "/examples/rails7_app"
|
|
11
|
+
- "/examples/rails8_0_app"
|
|
12
|
+
- "/examples/rails8_1_app"
|
|
13
|
+
- "/gemfiles/"
|
|
14
|
+
schedule:
|
|
15
|
+
interval: "weekly"
|
|
16
|
+
open-pull-requests-limit: 5
|
|
17
|
+
target-branch: "master"
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
|
2
|
+
# They are provided by a third-party and are governed by
|
|
3
|
+
# separate terms of service, privacy policy, and support
|
|
4
|
+
# documentation.
|
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
|
7
|
+
|
|
8
|
+
name: rspec tests
|
|
9
|
+
|
|
10
|
+
on:
|
|
11
|
+
push:
|
|
12
|
+
branches: [ "master" ]
|
|
13
|
+
pull_request:
|
|
14
|
+
branches: [ "master" ]
|
|
15
|
+
|
|
16
|
+
permissions:
|
|
17
|
+
contents: read
|
|
18
|
+
|
|
19
|
+
jobs:
|
|
20
|
+
test:
|
|
21
|
+
|
|
22
|
+
runs-on: ubuntu-22.04
|
|
23
|
+
strategy:
|
|
24
|
+
matrix:
|
|
25
|
+
ruby-version: ['3.0.6','3.1.4','3.2.2' ]
|
|
26
|
+
|
|
27
|
+
environment: test
|
|
28
|
+
steps:
|
|
29
|
+
- uses: actions/checkout@v4
|
|
30
|
+
- name: Set up Ruby
|
|
31
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
32
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
33
|
+
# uses: ruby/setup-ruby@v1
|
|
34
|
+
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
|
|
35
|
+
with:
|
|
36
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
37
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
38
|
+
- name: Run tests
|
|
39
|
+
run: bundle exec rspec
|
|
40
|
+
env:
|
|
41
|
+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
data/.gitignore
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Devise::MultiEmail [](https://github.com/mgmodell/devise-multi_email/actions/workflows/ruby_spec.yml) [](https://coveralls.io/github/mgmodell/devise-multi_email?branch=master) [](https://github.com/mgmodell/devise-multi_email/actions/workflows/dependabot/dependabot-updates)
|
|
2
2
|
|
|
3
3
|
Letting [Devise](https://github.com/plataformatec/devise) support multiple emails, allows you to:
|
|
4
4
|
- Login with multiple emails
|
|
@@ -6,14 +6,14 @@ Letting [Devise](https://github.com/plataformatec/devise) support multiple email
|
|
|
6
6
|
- Recover the password with any of the emails
|
|
7
7
|
- Validations for multiple emails
|
|
8
8
|
|
|
9
|
-
`:multi_email_authenticatable`, `:multi_email_confirmable` and `:multi_email_validatable` are provided by _devise-
|
|
9
|
+
`:multi_email_authenticatable`, `:multi_email_confirmable` and `:multi_email_validatable` are provided by _devise-multi-email_.
|
|
10
10
|
|
|
11
11
|
## Getting Started
|
|
12
12
|
|
|
13
13
|
Add this line to your application's `Gemfile`:
|
|
14
14
|
|
|
15
15
|
```ruby
|
|
16
|
-
gem 'devise-multi_email
|
|
16
|
+
gem 'devise-multi_email`
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Suppose you have already setup Devise, your `User` model might look like this:
|
|
@@ -24,7 +24,7 @@ class User < ActiveRecord::Base
|
|
|
24
24
|
end
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
In order to let your `User` support multiple emails, with _devise-
|
|
27
|
+
In order to let your `User` support multiple emails, with _devise-multi-email_ what you need to do is just:
|
|
28
28
|
|
|
29
29
|
```ruby
|
|
30
30
|
class User < ActiveRecord::Base
|
|
@@ -182,7 +182,7 @@ You can do `email.send_confirmation_instructions` for each email individually, b
|
|
|
182
182
|
|
|
183
183
|
After checking out the repo, run `bundle install` to install dependencies.
|
|
184
184
|
|
|
185
|
-
Then, run `bundle exec rake` to run the RSpec test suite.
|
|
185
|
+
Then, run `bundle exec rake` to run the RSpec test suite.
|
|
186
186
|
|
|
187
187
|
## Contributing
|
|
188
188
|
|
data/devise-multi_email.gemspec
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
|
1
|
+
lib = File.expand_path('lib', __dir__)
|
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
3
|
require 'devise/multi_email/version'
|
|
5
4
|
|
|
6
5
|
Gem::Specification.new do |spec|
|
|
7
6
|
spec.name = 'devise-multi_email'
|
|
8
7
|
spec.version = Devise::MultiEmail::VERSION
|
|
9
|
-
spec.authors = ['ALLEN WANG QIANG', 'Joel Van Horn']
|
|
10
|
-
spec.email = ['rovingbreeze@gmail.com', 'joel@joelvanhorn.com']
|
|
8
|
+
spec.authors = ['ALLEN WANG QIANG', 'Joel Van Horn', 'Micah Gideon Modell']
|
|
9
|
+
spec.email = ['rovingbreeze@gmail.com', 'joel@joelvanhorn.com', 'micah.modell@gmail.com']
|
|
11
10
|
|
|
12
|
-
spec.summary =
|
|
13
|
-
spec.description =
|
|
11
|
+
spec.summary = 'Let devise support multiple emails.'
|
|
12
|
+
spec.description = 'Devise authenticatable, confirmable and validatable with multiple emails.'
|
|
14
13
|
spec.homepage = 'https://github.com/allenwq/devise-multi_email.git'
|
|
15
14
|
spec.license = 'MIT'
|
|
16
15
|
|
|
@@ -19,12 +18,14 @@ Gem::Specification.new do |spec|
|
|
|
19
18
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
19
|
spec.require_paths = ['lib']
|
|
21
20
|
|
|
22
|
-
spec.
|
|
21
|
+
spec.required_ruby_version = '>= 3.0'
|
|
23
22
|
|
|
24
|
-
spec.
|
|
25
|
-
|
|
26
|
-
spec.add_development_dependency '
|
|
27
|
-
spec.add_development_dependency '
|
|
28
|
-
spec.add_development_dependency '
|
|
29
|
-
spec.add_development_dependency '
|
|
23
|
+
spec.add_runtime_dependency 'devise', '<6.0'
|
|
24
|
+
|
|
25
|
+
spec.add_development_dependency 'bundler', '<5.0'
|
|
26
|
+
spec.add_development_dependency 'capybara', '<4.0'
|
|
27
|
+
spec.add_development_dependency 'coveralls_reborn', '<=0.29.0'
|
|
28
|
+
spec.add_development_dependency 'rake', '<14.0'
|
|
29
|
+
spec.add_development_dependency 'rspec', '<4.0'
|
|
30
|
+
spec.add_development_dependency 'sqlite3', '<=2.9.0'
|
|
30
31
|
end
|
|
@@ -7,13 +7,13 @@ end
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
10
|
-
gem 'rails', '~>
|
|
10
|
+
gem 'rails', '~> 8.1'
|
|
11
11
|
# Use sqlite3 as the database for Active Record
|
|
12
12
|
gem 'sqlite3'
|
|
13
13
|
# Use Puma as the app server
|
|
14
|
-
gem 'puma', '~>
|
|
14
|
+
gem 'puma', '~> 7.2'
|
|
15
15
|
# Use SCSS for stylesheets
|
|
16
|
-
gem 'sass-rails', '~>
|
|
16
|
+
gem 'sass-rails', '~> 6.0'
|
|
17
17
|
# Use Uglifier as compressor for JavaScript assets
|
|
18
18
|
gem 'uglifier', '>= 1.3.0'
|
|
19
19
|
# See https://github.com/rails/execjs#readme for more supported runtimes
|
|
@@ -41,10 +41,10 @@ end
|
|
|
41
41
|
group :development do
|
|
42
42
|
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
|
|
43
43
|
gem 'web-console', '>= 3.3.0'
|
|
44
|
-
gem 'listen', '~> 3.0
|
|
44
|
+
gem 'listen', '~> 3.10.0'
|
|
45
45
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
46
46
|
gem 'spring'
|
|
47
|
-
gem 'spring-watcher-listen', '~> 2.
|
|
47
|
+
gem 'spring-watcher-listen', '~> 2.1.0'
|
|
48
48
|
end
|
|
49
49
|
|
|
50
50
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: https://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
action_text-trix (2.1.17)
|
|
5
|
+
railties
|
|
6
|
+
actioncable (8.1.2)
|
|
7
|
+
actionpack (= 8.1.2)
|
|
8
|
+
activesupport (= 8.1.2)
|
|
9
|
+
nio4r (~> 2.0)
|
|
10
|
+
websocket-driver (>= 0.6.1)
|
|
11
|
+
zeitwerk (~> 2.6)
|
|
12
|
+
actionmailbox (8.1.2)
|
|
13
|
+
actionpack (= 8.1.2)
|
|
14
|
+
activejob (= 8.1.2)
|
|
15
|
+
activerecord (= 8.1.2)
|
|
16
|
+
activestorage (= 8.1.2)
|
|
17
|
+
activesupport (= 8.1.2)
|
|
18
|
+
mail (>= 2.8.0)
|
|
19
|
+
actionmailer (8.1.2)
|
|
20
|
+
actionpack (= 8.1.2)
|
|
21
|
+
actionview (= 8.1.2)
|
|
22
|
+
activejob (= 8.1.2)
|
|
23
|
+
activesupport (= 8.1.2)
|
|
24
|
+
mail (>= 2.8.0)
|
|
25
|
+
rails-dom-testing (~> 2.2)
|
|
26
|
+
actionpack (8.1.2)
|
|
27
|
+
actionview (= 8.1.2)
|
|
28
|
+
activesupport (= 8.1.2)
|
|
29
|
+
nokogiri (>= 1.8.5)
|
|
30
|
+
rack (>= 2.2.4)
|
|
31
|
+
rack-session (>= 1.0.1)
|
|
32
|
+
rack-test (>= 0.6.3)
|
|
33
|
+
rails-dom-testing (~> 2.2)
|
|
34
|
+
rails-html-sanitizer (~> 1.6)
|
|
35
|
+
useragent (~> 0.16)
|
|
36
|
+
actiontext (8.1.2)
|
|
37
|
+
action_text-trix (~> 2.1.15)
|
|
38
|
+
actionpack (= 8.1.2)
|
|
39
|
+
activerecord (= 8.1.2)
|
|
40
|
+
activestorage (= 8.1.2)
|
|
41
|
+
activesupport (= 8.1.2)
|
|
42
|
+
globalid (>= 0.6.0)
|
|
43
|
+
nokogiri (>= 1.8.5)
|
|
44
|
+
actionview (8.1.2)
|
|
45
|
+
activesupport (= 8.1.2)
|
|
46
|
+
builder (~> 3.1)
|
|
47
|
+
erubi (~> 1.11)
|
|
48
|
+
rails-dom-testing (~> 2.2)
|
|
49
|
+
rails-html-sanitizer (~> 1.6)
|
|
50
|
+
activejob (8.1.2)
|
|
51
|
+
activesupport (= 8.1.2)
|
|
52
|
+
globalid (>= 0.3.6)
|
|
53
|
+
activemodel (8.1.2)
|
|
54
|
+
activesupport (= 8.1.2)
|
|
55
|
+
activerecord (8.1.2)
|
|
56
|
+
activemodel (= 8.1.2)
|
|
57
|
+
activesupport (= 8.1.2)
|
|
58
|
+
timeout (>= 0.4.0)
|
|
59
|
+
activestorage (8.1.2)
|
|
60
|
+
actionpack (= 8.1.2)
|
|
61
|
+
activejob (= 8.1.2)
|
|
62
|
+
activerecord (= 8.1.2)
|
|
63
|
+
activesupport (= 8.1.2)
|
|
64
|
+
marcel (~> 1.0)
|
|
65
|
+
activesupport (8.1.2)
|
|
66
|
+
base64
|
|
67
|
+
bigdecimal
|
|
68
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
69
|
+
connection_pool (>= 2.2.5)
|
|
70
|
+
drb
|
|
71
|
+
i18n (>= 1.6, < 2)
|
|
72
|
+
json
|
|
73
|
+
logger (>= 1.4.2)
|
|
74
|
+
minitest (>= 5.1)
|
|
75
|
+
securerandom (>= 0.3)
|
|
76
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
77
|
+
uri (>= 0.13.1)
|
|
78
|
+
base64 (0.3.0)
|
|
79
|
+
bcrypt (3.1.21)
|
|
80
|
+
bigdecimal (4.0.1)
|
|
81
|
+
bindex (0.8.1)
|
|
82
|
+
builder (3.3.0)
|
|
83
|
+
byebug (13.0.0)
|
|
84
|
+
reline (>= 0.6.0)
|
|
85
|
+
concurrent-ruby (1.3.6)
|
|
86
|
+
connection_pool (3.0.2)
|
|
87
|
+
crass (1.0.6)
|
|
88
|
+
date (3.5.1)
|
|
89
|
+
devise (5.0.2)
|
|
90
|
+
bcrypt (~> 3.0)
|
|
91
|
+
orm_adapter (~> 0.1)
|
|
92
|
+
railties (>= 7.0)
|
|
93
|
+
responders
|
|
94
|
+
warden (~> 1.2.3)
|
|
95
|
+
devise-encryptable (0.2.0)
|
|
96
|
+
devise (>= 2.1.0)
|
|
97
|
+
devise-multi_email (3.0.1)
|
|
98
|
+
devise
|
|
99
|
+
drb (2.2.3)
|
|
100
|
+
erb (6.0.2)
|
|
101
|
+
erubi (1.13.1)
|
|
102
|
+
execjs (2.10.0)
|
|
103
|
+
ffi (1.17.3-aarch64-linux-gnu)
|
|
104
|
+
ffi (1.17.3-aarch64-linux-musl)
|
|
105
|
+
ffi (1.17.3-arm-linux-gnu)
|
|
106
|
+
ffi (1.17.3-arm-linux-musl)
|
|
107
|
+
ffi (1.17.3-arm64-darwin)
|
|
108
|
+
ffi (1.17.3-x86_64-darwin)
|
|
109
|
+
ffi (1.17.3-x86_64-linux-gnu)
|
|
110
|
+
ffi (1.17.3-x86_64-linux-musl)
|
|
111
|
+
globalid (1.3.0)
|
|
112
|
+
activesupport (>= 6.1)
|
|
113
|
+
i18n (1.14.8)
|
|
114
|
+
concurrent-ruby (~> 1.0)
|
|
115
|
+
io-console (0.8.2)
|
|
116
|
+
irb (1.17.0)
|
|
117
|
+
pp (>= 0.6.0)
|
|
118
|
+
prism (>= 1.3.0)
|
|
119
|
+
rdoc (>= 4.0.0)
|
|
120
|
+
reline (>= 0.4.2)
|
|
121
|
+
jbuilder (2.14.1)
|
|
122
|
+
actionview (>= 7.0.0)
|
|
123
|
+
activesupport (>= 7.0.0)
|
|
124
|
+
jquery-rails (4.6.1)
|
|
125
|
+
rails-dom-testing (>= 1, < 3)
|
|
126
|
+
railties (>= 4.2.0)
|
|
127
|
+
thor (>= 0.14, < 2.0)
|
|
128
|
+
json (2.19.1)
|
|
129
|
+
listen (3.10.0)
|
|
130
|
+
logger
|
|
131
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
132
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
133
|
+
logger (1.7.0)
|
|
134
|
+
loofah (2.25.0)
|
|
135
|
+
crass (~> 1.0.2)
|
|
136
|
+
nokogiri (>= 1.12.0)
|
|
137
|
+
mail (2.9.0)
|
|
138
|
+
logger
|
|
139
|
+
mini_mime (>= 0.1.1)
|
|
140
|
+
net-imap
|
|
141
|
+
net-pop
|
|
142
|
+
net-smtp
|
|
143
|
+
marcel (1.1.0)
|
|
144
|
+
mini_mime (1.1.5)
|
|
145
|
+
minitest (6.0.2)
|
|
146
|
+
drb (~> 2.0)
|
|
147
|
+
prism (~> 1.5)
|
|
148
|
+
net-imap (0.6.3)
|
|
149
|
+
date
|
|
150
|
+
net-protocol
|
|
151
|
+
net-pop (0.1.2)
|
|
152
|
+
net-protocol
|
|
153
|
+
net-protocol (0.2.2)
|
|
154
|
+
timeout
|
|
155
|
+
net-smtp (0.5.1)
|
|
156
|
+
net-protocol
|
|
157
|
+
nio4r (2.7.5)
|
|
158
|
+
nokogiri (1.19.1-aarch64-linux-gnu)
|
|
159
|
+
racc (~> 1.4)
|
|
160
|
+
nokogiri (1.19.1-aarch64-linux-musl)
|
|
161
|
+
racc (~> 1.4)
|
|
162
|
+
nokogiri (1.19.1-arm-linux-gnu)
|
|
163
|
+
racc (~> 1.4)
|
|
164
|
+
nokogiri (1.19.1-arm-linux-musl)
|
|
165
|
+
racc (~> 1.4)
|
|
166
|
+
nokogiri (1.19.1-arm64-darwin)
|
|
167
|
+
racc (~> 1.4)
|
|
168
|
+
nokogiri (1.19.1-x86_64-darwin)
|
|
169
|
+
racc (~> 1.4)
|
|
170
|
+
nokogiri (1.19.1-x86_64-linux-gnu)
|
|
171
|
+
racc (~> 1.4)
|
|
172
|
+
nokogiri (1.19.1-x86_64-linux-musl)
|
|
173
|
+
racc (~> 1.4)
|
|
174
|
+
orm_adapter (0.5.0)
|
|
175
|
+
pp (0.6.3)
|
|
176
|
+
prettyprint
|
|
177
|
+
prettyprint (0.2.0)
|
|
178
|
+
prism (1.9.0)
|
|
179
|
+
psych (5.3.1)
|
|
180
|
+
date
|
|
181
|
+
stringio
|
|
182
|
+
puma (7.2.0)
|
|
183
|
+
nio4r (~> 2.0)
|
|
184
|
+
racc (1.8.1)
|
|
185
|
+
rack (3.2.5)
|
|
186
|
+
rack-session (2.1.1)
|
|
187
|
+
base64 (>= 0.1.0)
|
|
188
|
+
rack (>= 3.0.0)
|
|
189
|
+
rack-test (2.2.0)
|
|
190
|
+
rack (>= 1.3)
|
|
191
|
+
rackup (2.3.1)
|
|
192
|
+
rack (>= 3)
|
|
193
|
+
rails (8.1.2)
|
|
194
|
+
actioncable (= 8.1.2)
|
|
195
|
+
actionmailbox (= 8.1.2)
|
|
196
|
+
actionmailer (= 8.1.2)
|
|
197
|
+
actionpack (= 8.1.2)
|
|
198
|
+
actiontext (= 8.1.2)
|
|
199
|
+
actionview (= 8.1.2)
|
|
200
|
+
activejob (= 8.1.2)
|
|
201
|
+
activemodel (= 8.1.2)
|
|
202
|
+
activerecord (= 8.1.2)
|
|
203
|
+
activestorage (= 8.1.2)
|
|
204
|
+
activesupport (= 8.1.2)
|
|
205
|
+
bundler (>= 1.15.0)
|
|
206
|
+
railties (= 8.1.2)
|
|
207
|
+
rails-dom-testing (2.3.0)
|
|
208
|
+
activesupport (>= 5.0.0)
|
|
209
|
+
minitest
|
|
210
|
+
nokogiri (>= 1.6)
|
|
211
|
+
rails-html-sanitizer (1.7.0)
|
|
212
|
+
loofah (~> 2.25)
|
|
213
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
214
|
+
railties (8.1.2)
|
|
215
|
+
actionpack (= 8.1.2)
|
|
216
|
+
activesupport (= 8.1.2)
|
|
217
|
+
irb (~> 1.13)
|
|
218
|
+
rackup (>= 1.0.0)
|
|
219
|
+
rake (>= 12.2)
|
|
220
|
+
thor (~> 1.0, >= 1.2.2)
|
|
221
|
+
tsort (>= 0.2)
|
|
222
|
+
zeitwerk (~> 2.6)
|
|
223
|
+
rake (13.3.1)
|
|
224
|
+
rb-fsevent (0.11.2)
|
|
225
|
+
rb-inotify (0.11.1)
|
|
226
|
+
ffi (~> 1.0)
|
|
227
|
+
rdoc (7.2.0)
|
|
228
|
+
erb
|
|
229
|
+
psych (>= 4.0.0)
|
|
230
|
+
tsort
|
|
231
|
+
reline (0.6.3)
|
|
232
|
+
io-console (~> 0.5)
|
|
233
|
+
responders (3.2.0)
|
|
234
|
+
actionpack (>= 7.0)
|
|
235
|
+
railties (>= 7.0)
|
|
236
|
+
sass-rails (6.0.0)
|
|
237
|
+
sassc-rails (~> 2.1, >= 2.1.1)
|
|
238
|
+
sassc (2.4.0)
|
|
239
|
+
ffi (~> 1.9)
|
|
240
|
+
sassc-rails (2.1.2)
|
|
241
|
+
railties (>= 4.0.0)
|
|
242
|
+
sassc (>= 2.0)
|
|
243
|
+
sprockets (> 3.0)
|
|
244
|
+
sprockets-rails
|
|
245
|
+
tilt
|
|
246
|
+
securerandom (0.4.1)
|
|
247
|
+
spring (4.4.2)
|
|
248
|
+
spring-watcher-listen (2.1.0)
|
|
249
|
+
listen (>= 2.7, < 4.0)
|
|
250
|
+
spring (>= 4)
|
|
251
|
+
sprockets (4.2.2)
|
|
252
|
+
concurrent-ruby (~> 1.0)
|
|
253
|
+
logger
|
|
254
|
+
rack (>= 2.2.4, < 4)
|
|
255
|
+
sprockets-rails (3.5.2)
|
|
256
|
+
actionpack (>= 6.1)
|
|
257
|
+
activesupport (>= 6.1)
|
|
258
|
+
sprockets (>= 3.0.0)
|
|
259
|
+
sqlite3 (2.9.1-aarch64-linux-gnu)
|
|
260
|
+
sqlite3 (2.9.1-aarch64-linux-musl)
|
|
261
|
+
sqlite3 (2.9.1-arm-linux-gnu)
|
|
262
|
+
sqlite3 (2.9.1-arm-linux-musl)
|
|
263
|
+
sqlite3 (2.9.1-arm64-darwin)
|
|
264
|
+
sqlite3 (2.9.1-x86_64-darwin)
|
|
265
|
+
sqlite3 (2.9.1-x86_64-linux-gnu)
|
|
266
|
+
sqlite3 (2.9.1-x86_64-linux-musl)
|
|
267
|
+
stringio (3.2.0)
|
|
268
|
+
thor (1.5.0)
|
|
269
|
+
tilt (2.7.0)
|
|
270
|
+
timeout (0.6.0)
|
|
271
|
+
tsort (0.2.0)
|
|
272
|
+
turbolinks (5.2.1)
|
|
273
|
+
turbolinks-source (~> 5.2)
|
|
274
|
+
turbolinks-source (5.2.0)
|
|
275
|
+
tzinfo (2.0.6)
|
|
276
|
+
concurrent-ruby (~> 1.0)
|
|
277
|
+
uglifier (4.2.1)
|
|
278
|
+
execjs (>= 0.3.0, < 3)
|
|
279
|
+
uri (1.1.1)
|
|
280
|
+
useragent (0.16.11)
|
|
281
|
+
warden (1.2.9)
|
|
282
|
+
rack (>= 2.0.9)
|
|
283
|
+
web-console (4.3.0)
|
|
284
|
+
actionview (>= 8.0.0)
|
|
285
|
+
bindex (>= 0.4.0)
|
|
286
|
+
railties (>= 8.0.0)
|
|
287
|
+
websocket-driver (0.8.0)
|
|
288
|
+
base64
|
|
289
|
+
websocket-extensions (>= 0.1.0)
|
|
290
|
+
websocket-extensions (0.1.5)
|
|
291
|
+
zeitwerk (2.7.5)
|
|
292
|
+
|
|
293
|
+
PLATFORMS
|
|
294
|
+
aarch64-linux-gnu
|
|
295
|
+
aarch64-linux-musl
|
|
296
|
+
arm-linux-gnu
|
|
297
|
+
arm-linux-musl
|
|
298
|
+
arm64-darwin
|
|
299
|
+
x86_64-darwin
|
|
300
|
+
x86_64-linux-gnu
|
|
301
|
+
x86_64-linux-musl
|
|
302
|
+
|
|
303
|
+
DEPENDENCIES
|
|
304
|
+
byebug
|
|
305
|
+
devise
|
|
306
|
+
devise-encryptable
|
|
307
|
+
devise-multi_email
|
|
308
|
+
jbuilder (~> 2.5)
|
|
309
|
+
jquery-rails
|
|
310
|
+
listen (~> 3.10.0)
|
|
311
|
+
puma (~> 7.2)
|
|
312
|
+
rails (~> 8.1)
|
|
313
|
+
sass-rails (~> 6.0)
|
|
314
|
+
spring
|
|
315
|
+
spring-watcher-listen (~> 2.1.0)
|
|
316
|
+
sqlite3
|
|
317
|
+
turbolinks (~> 5)
|
|
318
|
+
tzinfo-data
|
|
319
|
+
uglifier (>= 1.3.0)
|
|
320
|
+
web-console (>= 3.3.0)
|
|
321
|
+
|
|
322
|
+
CHECKSUMS
|
|
323
|
+
action_text-trix (2.1.17) sha256=b44691639d77e67169dc054ceacd1edc04d44dc3e4c6a427aa155a2beb4cc951
|
|
324
|
+
actioncable (8.1.2) sha256=dc31efc34cca9cdefc5c691ddb8b4b214c0ea5cd1372108cbc1377767fb91969
|
|
325
|
+
actionmailbox (8.1.2) sha256=058b2fb1980e5d5a894f675475fcfa45c62631103d5a2596d9610ec81581889b
|
|
326
|
+
actionmailer (8.1.2) sha256=f4c1d2060f653bfe908aa7fdc5a61c0e5279670de992146582f2e36f8b9175e9
|
|
327
|
+
actionpack (8.1.2) sha256=ced74147a1f0daafaa4bab7f677513fd4d3add574c7839958f7b4f1de44f8423
|
|
328
|
+
actiontext (8.1.2) sha256=0bf57da22a9c19d970779c3ce24a56be31b51c7640f2763ec64aa72e358d2d2d
|
|
329
|
+
actionview (8.1.2) sha256=80455b2588911c9b72cec22d240edacb7c150e800ef2234821269b2b2c3e2e5b
|
|
330
|
+
activejob (8.1.2) sha256=908dab3713b101859536375819f4156b07bdf4c232cc645e7538adb9e302f825
|
|
331
|
+
activemodel (8.1.2) sha256=e21358c11ce68aed3f9838b7e464977bc007b4446c6e4059781e1d5c03bcf33e
|
|
332
|
+
activerecord (8.1.2) sha256=acfbe0cadfcc50fa208011fe6f4eb01cae682ebae0ef57145ba45380c74bcc44
|
|
333
|
+
activestorage (8.1.2) sha256=8a63a48c3999caeee26a59441f813f94681fc35cc41aba7ce1f836add04fba76
|
|
334
|
+
activesupport (8.1.2) sha256=88842578ccd0d40f658289b0e8c842acfe9af751afee2e0744a7873f50b6fdae
|
|
335
|
+
base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
|
|
336
|
+
bcrypt (3.1.21) sha256=5964613d750a42c7ee5dc61f7b9336fb6caca429ba4ac9f2011609946e4a2dcf
|
|
337
|
+
bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
|
|
338
|
+
bindex (0.8.1) sha256=7b1ecc9dc539ed8bccfc8cb4d2732046227b09d6f37582ff12e50a5047ceb17e
|
|
339
|
+
builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
|
|
340
|
+
byebug (13.0.0) sha256=d2263efe751941ca520fa29744b71972d39cbc41839496706f5d9b22e92ae05d
|
|
341
|
+
concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
|
|
342
|
+
connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
|
|
343
|
+
crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
|
|
344
|
+
date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
|
|
345
|
+
devise (5.0.2) sha256=254330c9290e612ad9681e8a18c96aa21fb95bc391af936b84480965444bb0b6
|
|
346
|
+
devise-encryptable (0.2.0) sha256=9860caed9484030c438cfaf05831355c16c6a9612dcd1e12e84805850f7d09b6
|
|
347
|
+
devise-multi_email (3.0.1) sha256=68edb60ff40bc6f6c017472d2d39c3c17e522a17d5e2bece4f0b0169b534c00d
|
|
348
|
+
drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
|
|
349
|
+
erb (6.0.2) sha256=9fe6264d44f79422c87490a1558479bd0e7dad4dd0e317656e67ea3077b5242b
|
|
350
|
+
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
|
|
351
|
+
execjs (2.10.0) sha256=6bcb8be8f0052ff9d370b65d1c080f2406656e150452a0abdb185a133048450d
|
|
352
|
+
ffi (1.17.3-aarch64-linux-gnu) sha256=28ad573df26560f0aedd8a90c3371279a0b2bd0b4e834b16a2baa10bd7a97068
|
|
353
|
+
ffi (1.17.3-aarch64-linux-musl) sha256=020b33b76775b1abacc3b7d86b287cef3251f66d747092deec592c7f5df764b2
|
|
354
|
+
ffi (1.17.3-arm-linux-gnu) sha256=5bd4cea83b68b5ec0037f99c57d5ce2dd5aa438f35decc5ef68a7d085c785668
|
|
355
|
+
ffi (1.17.3-arm-linux-musl) sha256=0d7626bb96265f9af78afa33e267d71cfef9d9a8eb8f5525344f8da6c7d76053
|
|
356
|
+
ffi (1.17.3-arm64-darwin) sha256=0c690555d4cee17a7f07c04d59df39b2fba74ec440b19da1f685c6579bb0717f
|
|
357
|
+
ffi (1.17.3-x86_64-darwin) sha256=1f211811eb5cfaa25998322cdd92ab104bfbd26d1c4c08471599c511f2c00bb5
|
|
358
|
+
ffi (1.17.3-x86_64-linux-gnu) sha256=3746b01f677aae7b16dc1acb7cb3cc17b3e35bdae7676a3f568153fb0e2c887f
|
|
359
|
+
ffi (1.17.3-x86_64-linux-musl) sha256=086b221c3a68320b7564066f46fed23449a44f7a1935f1fe5a245bd89d9aea56
|
|
360
|
+
globalid (1.3.0) sha256=05c639ad6eb4594522a0b07983022f04aa7254626ab69445a0e493aa3786ff11
|
|
361
|
+
i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
|
|
362
|
+
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
|
|
363
|
+
irb (1.17.0) sha256=168c4ddb93d8a361a045c41d92b2952c7a118fa73f23fe14e55609eb7a863aae
|
|
364
|
+
jbuilder (2.14.1) sha256=4eb26376ff60ef100cb4fd6fd7533cd271f9998327e86adf20fd8c0e69fabb42
|
|
365
|
+
jquery-rails (4.6.1) sha256=619f3496cdcdeaae1fd6dafa52dbac3fc45b745d4e09712da4184a16b3a8d9c0
|
|
366
|
+
json (2.19.1) sha256=dd94fdc59e48bff85913829a32350b3148156bc4fd2a95a2568a78b11344082d
|
|
367
|
+
listen (3.10.0) sha256=c6e182db62143aeccc2e1960033bebe7445309c7272061979bb098d03760c9d2
|
|
368
|
+
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
|
369
|
+
loofah (2.25.0) sha256=df5ed7ac3bac6a4ec802df3877ee5cc86d027299f8952e6243b3dac446b060e6
|
|
370
|
+
mail (2.9.0) sha256=6fa6673ecd71c60c2d996260f9ee3dd387d4673b8169b502134659ece6d34941
|
|
371
|
+
marcel (1.1.0) sha256=fdcfcfa33cc52e93c4308d40e4090a5d4ea279e160a7f6af988260fa970e0bee
|
|
372
|
+
mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef
|
|
373
|
+
minitest (6.0.2) sha256=db6e57956f6ecc6134683b4c87467d6dd792323c7f0eea7b93f66bd284adbc3d
|
|
374
|
+
net-imap (0.6.3) sha256=9bab75f876596d09ee7bf911a291da478e0cd6badc54dfb82874855ccc82f2ad
|
|
375
|
+
net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
|
|
376
|
+
net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
|
|
377
|
+
net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
|
|
378
|
+
nio4r (2.7.5) sha256=6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1
|
|
379
|
+
nokogiri (1.19.1-aarch64-linux-gnu) sha256=cfdb0eafd9a554a88f12ebcc688d2b9005f9fce42b00b970e3dc199587b27f32
|
|
380
|
+
nokogiri (1.19.1-aarch64-linux-musl) sha256=1e2150ab43c3b373aba76cd1190af7b9e92103564063e48c474f7600923620b5
|
|
381
|
+
nokogiri (1.19.1-arm-linux-gnu) sha256=0a39ed59abe3bf279fab9dd4c6db6fe8af01af0608f6e1f08b8ffa4e5d407fa3
|
|
382
|
+
nokogiri (1.19.1-arm-linux-musl) sha256=3a18e559ee499b064aac6562d98daab3d39ba6cbb4074a1542781b2f556db47d
|
|
383
|
+
nokogiri (1.19.1-arm64-darwin) sha256=dfe2d337e6700eac47290407c289d56bcf85805d128c1b5a6434ddb79731cb9e
|
|
384
|
+
nokogiri (1.19.1-x86_64-darwin) sha256=7093896778cc03efb74b85f915a775862730e887f2e58d6921e3fa3d981e68bf
|
|
385
|
+
nokogiri (1.19.1-x86_64-linux-gnu) sha256=1a4902842a186b4f901078e692d12257678e6133858d0566152fe29cdb98456a
|
|
386
|
+
nokogiri (1.19.1-x86_64-linux-musl) sha256=4267f38ad4fc7e52a2e7ee28ed494e8f9d8eb4f4b3320901d55981c7b995fc23
|
|
387
|
+
orm_adapter (0.5.0) sha256=aa5d0be5d540cbb46d3a93e88061f4ece6a25f6e97d6a47122beb84fe595e9b9
|
|
388
|
+
pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
|
|
389
|
+
prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
|
|
390
|
+
prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
|
|
391
|
+
psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
|
|
392
|
+
puma (7.2.0) sha256=bf8ef4ab514a4e6d4554cb4326b2004eba5036ae05cf765cfe51aba9706a72a8
|
|
393
|
+
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
|
394
|
+
rack (3.2.5) sha256=4cbd0974c0b79f7a139b4812004a62e4c60b145cba76422e288ee670601ed6d3
|
|
395
|
+
rack-session (2.1.1) sha256=0b6dc07dea7e4b583f58a48e8b806d4c9f1c6c9214ebc202ec94562cbea2e4e9
|
|
396
|
+
rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
|
|
397
|
+
rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
|
|
398
|
+
rails (8.1.2) sha256=5069061b23dfa8706b9f0159ae8b9d35727359103178a26962b868a680ba7d95
|
|
399
|
+
rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
|
|
400
|
+
rails-html-sanitizer (1.7.0) sha256=28b145cceaf9cc214a9874feaa183c3acba036c9592b19886e0e45efc62b1e89
|
|
401
|
+
railties (8.1.2) sha256=1289ece76b4f7668fc46d07e55cc992b5b8751f2ad85548b7da351b8c59f8055
|
|
402
|
+
rake (13.3.1) sha256=8c9e89d09f66a26a01264e7e3480ec0607f0c497a861ef16063604b1b08eb19c
|
|
403
|
+
rb-fsevent (0.11.2) sha256=43900b972e7301d6570f64b850a5aa67833ee7d87b458ee92805d56b7318aefe
|
|
404
|
+
rb-inotify (0.11.1) sha256=a0a700441239b0ff18eb65e3866236cd78613d6b9f78fea1f9ac47a85e47be6e
|
|
405
|
+
rdoc (7.2.0) sha256=8650f76cd4009c3b54955eb5d7e3a075c60a57276766ebf36f9085e8c9f23192
|
|
406
|
+
reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
|
|
407
|
+
responders (3.2.0) sha256=89c2d6ac0ae16f6458a11524cae4a8efdceba1a3baea164d28ee9046bd3df55a
|
|
408
|
+
sass-rails (6.0.0) sha256=e0b6448ea1c7929fd5929fc7a8eb2d78045e44cc82fc0765a249d3fa1c5810d3
|
|
409
|
+
sassc (2.4.0) sha256=4c60a2b0a3b36685c83b80d5789401c2f678c1652e3288315a1551d811d9f83e
|
|
410
|
+
sassc-rails (2.1.2) sha256=5f4fdf3881fc9bdc8e856ffbd9850d70a2878866feae8114aa45996179952db5
|
|
411
|
+
securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
|
|
412
|
+
spring (4.4.2) sha256=22f61bacd8dc8595cedcdc738de46d7fc18be4d7a770986760344c924f485ce7
|
|
413
|
+
spring-watcher-listen (2.1.0) sha256=e958bcd956d1026eb95d16b2ef0e241d1ca35a754628bd45040e3d9954a61949
|
|
414
|
+
sprockets (4.2.2) sha256=761e5a49f1c288704763f73139763564c845a8f856d52fba013458f8af1b59b1
|
|
415
|
+
sprockets-rails (3.5.2) sha256=a9e88e6ce9f8c912d349aa5401509165ec42326baf9e942a85de4b76dbc4119e
|
|
416
|
+
sqlite3 (2.9.1-aarch64-linux-gnu) sha256=85535ddf1c37f116ebebe0330bbbffc2ccb55d09f69717a565f8cfb35142f136
|
|
417
|
+
sqlite3 (2.9.1-aarch64-linux-musl) sha256=646a28a655fc0298ff4266de0af89b66477a2d9ad65cebb5abad190bb64ed092
|
|
418
|
+
sqlite3 (2.9.1-arm-linux-gnu) sha256=ed25696b0fb4694ca4f47287eaaa9e0d46a0a0c92990c453743d6ab6b4f51fa0
|
|
419
|
+
sqlite3 (2.9.1-arm-linux-musl) sha256=82ca90eefe50935c827ab0c8dffff5219f57b5da0c92039e3e27f7dbccc9e992
|
|
420
|
+
sqlite3 (2.9.1-arm64-darwin) sha256=e0cc5521aa03361e2da56635f3745242510b0b98c4608a3824b7e31ab2e7ffb9
|
|
421
|
+
sqlite3 (2.9.1-x86_64-darwin) sha256=5ce2c05eed8dc7c6debd560e2c5960e36521652b9a43bc3e42bc431db600c36f
|
|
422
|
+
sqlite3 (2.9.1-x86_64-linux-gnu) sha256=1cbb644204ed143e5c96f6d59b5c571ba6f18b18a9dc5aa11c101187ff227afd
|
|
423
|
+
sqlite3 (2.9.1-x86_64-linux-musl) sha256=bbd50dd1caca78b6c069701d9009ef714461495985d4c374ea1a1def061ba67c
|
|
424
|
+
stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
|
|
425
|
+
thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
|
|
426
|
+
tilt (2.7.0) sha256=0d5b9ba69f6a36490c64b0eee9f6e9aad517e20dcc848800a06eb116f08c6ab3
|
|
427
|
+
timeout (0.6.0) sha256=6d722ad619f96ee383a0c557ec6eb8c4ecb08af3af62098a0be5057bf00de1af
|
|
428
|
+
tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
|
|
429
|
+
turbolinks (5.2.1) sha256=5fea5889c4e2a78a5bd9abda3860c565342b50c6e2593697d5558a08e15cce9c
|
|
430
|
+
turbolinks-source (5.2.0) sha256=362a41fa851a22b0f15cf8f944b6c7c5788f645dc1f61ae25478bb25c3bc85d4
|
|
431
|
+
tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
|
|
432
|
+
uglifier (4.2.1) sha256=75d42b81b10bfd21e7a427fabb1d49ff5ea7bda3c4a5039ddb2a78d194c6f5aa
|
|
433
|
+
uri (1.1.1) sha256=379fa58d27ffb1387eaada68c749d1426738bd0f654d812fcc07e7568f5c57c6
|
|
434
|
+
useragent (0.16.11) sha256=700e6413ad4bb954bb63547fa098dddf7b0ebe75b40cc6f93b8d54255b173844
|
|
435
|
+
warden (1.2.9) sha256=46684f885d35a69dbb883deabf85a222c8e427a957804719e143005df7a1efd0
|
|
436
|
+
web-console (4.3.0) sha256=e13b71301cdfc2093f155b5aa3a622db80b4672d1f2f713119cc7ec7ac6a6da4
|
|
437
|
+
websocket-driver (0.8.0) sha256=ed0dba4b943c22f17f9a734817e808bc84cdce6a7e22045f5315aa57676d4962
|
|
438
|
+
websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
|
|
439
|
+
zeitwerk (2.7.5) sha256=d8da92128c09ea6ec62c949011b00ed4a20242b255293dd66bf41545398f73dd
|
|
440
|
+
|
|
441
|
+
BUNDLED WITH
|
|
442
|
+
4.0.7
|