Skip to content

Commit

Permalink
Updates for 08/20/23
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Bot committed Aug 20, 2023
1 parent f40c23f commit 7b2b250
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2023-08-19 00:12:22 UTC using RuboCop version 1.56.0.
# on 2023-08-20 00:14:45 UTC using RuboCop version 1.56.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Mode</title>
<title>Sun</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
Expand Down
2 changes: 1 addition & 1 deletion config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)

module Mode
module Sun
class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 7.0
Expand Down
2 changes: 1 addition & 1 deletion config/cable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ test:
production:
adapter: redis
url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
channel_prefix: mode_production
channel_prefix: sun_production
2 changes: 1 addition & 1 deletion config/credentials.yml.enc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
wZijB/nsjotwsezf1aK88Bih0DvyLu4n5xIg6akj1phBs+cQwP6jacypo5sFHPV/2sZ/qbYfyvzIDTaMp6UnGTXOz1wcGeMD/fyaMG1BRDfTe96ggt+WW+gUkFZM6pQW5P792WOv1gKf0qW9eLhg8BP9FJoGHAfpMRuR1lvV+NV4jeMVP3gBQlfjHf8yKKKNbvKT5oxiZe58mlY0SGW+tjeN7eh4T1lDVIARBp7CsRXZK8QnhdV9kJcc+ovVt6zfF5Vj94leRWcpldi2LnZls1OIdo8PB93Q5em3GrEtDkEMYwIfDeERlrJMy2xQSrWUZFM2SeRsYpZI7txZduUy2XAeE6krfIAAMf8W2TcY2HnQyGL1CH97CZMiyPTRBq7RMgPh4PZEzZEGekL7GFoUfJHSAdqsKmg1+jpm--u1YA3x6318lwye7W--PPb+6fNgJVOD6/Cuqg4mmg==
BCZcaGXeLKPrLKMASfLROyiRzwO9gIGs8jmFTIM3h6i0z0P5NP9NJzLqEk6WDnQM/pv72yAPm1+SyWGUmztmVvrH8z6cg0eW4ddjaCOiS6ERxSGSnc5QP6i1Mm0xL3WRJZnqfRuZhdcXDt3Z5QwBOAT4GRyBuz7VVjwPdS5w0SFvCdseQvEtXAr6pVM0GtGLNmB4XUcnjA8JJEW/jfrCCSHXyUo3KLtExDFsz70blQAnV7/SRE9buO1zOukQmKwJ6URnfdpkaPMVYvzogYGN4BU5fphn7Kmrz8EYXABvcmVBADchSGwHetiZx+gej7tNoXbx6UffTuKzVdmeVKp49afEArkcRzOSR4UzLMgOd1TEFfY9NIjE4A0eH6xcQQubPtdbljiUlaJGRxcpPXCOMlttUDzCndIrTRSn--uOxluiMuDtzPSxXj--NtM+pqcsrynfLX/BYPKRkg==
12 changes: 6 additions & 6 deletions config/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ default: &default

development:
<<: *default
database: mode_development
database: sun_development

# The specified database role being used to connect to postgres.
# To create additional roles in postgres see `$ createuser --help`.
# When left blank, postgres will use the default role. This is
# the same name as the operating system user running Rails.
#username: mode
#username: sun

# The password associated with the postgres role (username).
#password:
Expand Down Expand Up @@ -57,7 +57,7 @@ development:
# Do not set this db to the same as development or production.
test:
<<: *default
database: mode_test
database: sun_test

# As with config/credentials.yml, you never want to store sensitive information,
# like your database password, in your source code. If your source code is
Expand All @@ -81,6 +81,6 @@ test:
#
production:
<<: *default
database: mode_production
username: mode
password: <%= ENV["MODE_DATABASE_PASSWORD"] %>
database: sun_production
username: sun
password: <%= ENV["SUN_DATABASE_PASSWORD"] %>
2 changes: 1 addition & 1 deletion config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

# Use a real queuing backend for Active Job (and separate queues per environment).
# config.active_job.queue_adapter = :resque
# config.active_job.queue_name_prefix = "mode_production"
# config.active_job.queue_name_prefix = "sun_production"

config.action_mailer.perform_caching = false

Expand Down
4 changes: 2 additions & 2 deletions config/initializers/devise.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# confirmation, reset password and unlock tokens in the database.
# Devise will use the `secret_key_base` as its `secret_key`
# by default. You can change it below and use your own secret key.
# config.secret_key = 'd507bb15c5bdfff8137f817f12387d62db2fd0cd0ff156652c15e574d3b40db8f6ac04b293dc46c81058b52e85567b4a14ea311daedc5ab8a0af0ea78cc8ba33'
# config.secret_key = 'b504acdb0416a3809262d0b1da4b3b6f018219bd3e49e36aa1f0c1fc780875b2c03d5b7eb2d12497587aa30766d993185f9efc9f47705e7cf530550be9c4eb3d'

# ==> Controller configuration
# Configure the parent class to the devise controllers.
Expand Down Expand Up @@ -126,7 +126,7 @@
config.stretches = Rails.env.test? ? 1 : 12

# Set up a pepper to generate the hashed password.
# config.pepper = '32298297c2b28fe35cc2ce4e348fba84154ef63f7c8541c0f503f8b733a5f08a7b83a41c6114705551ebfeccbccd12654bd48f9256c99555f52e8f69c4b7fa57'
# config.pepper = '301df84ef5b013d87903d9ae40be2fe15a1bfb882a0ec7466f0b49451ff5b5fdb761c7a5533d71d10b01886fb78a36fb44b644c327616ee20dc196f1f76d69e5'

# Send a notification to the original email when the user's email is changed.
# config.send_email_changed_notification = false
Expand Down
2 changes: 1 addition & 1 deletion db/schema.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,9 @@ browserslist@^4.21.10:
update-browserslist-db "^1.0.11"

caniuse-lite@^1.0.30001517, caniuse-lite@^1.0.30001520:
version "1.0.30001521"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001521.tgz#e9930cf499f7c1e80334b6c1fbca52e00d889e56"
integrity sha512-fnx1grfpEOvDGH+V17eccmNjucGUnCbP6KL+l5KqBIerp26WK/+RQ7CIDE37KGJjaPyqWXXlFUyKiWmvdNNKmQ==
version "1.0.30001522"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz#44b87a406c901269adcdb834713e23582dd71856"
integrity sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==

"chokidar@>=3.0.0 <4.0.0", chokidar@^3.3.0, chokidar@^3.5.2:
version "3.5.3"
Expand Down

0 comments on commit 7b2b250

Please sign in to comment.