From e0763d4d4b52c8489b80fdf052343a1947659451 Mon Sep 17 00:00:00 2001 From: Jeffrey Hardy Date: Thu, 22 Aug 2024 14:52:08 -0400 Subject: [PATCH] Splat -> Fizzy --- bin/setup | 3 +-- config/application.rb | 2 +- config/cable.yml | 2 +- config/environments/production.rb | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/bin/setup b/bin/setup index 17f420063..118f5d320 100755 --- a/bin/setup +++ b/bin/setup @@ -2,7 +2,7 @@ set -eo pipefail app_root="$( cd "$(dirname "$0")/.."; pwd )" -app_name="splat" +app_name="fizzy" # Use application binstubs export PATH="$app_root/bin:$PATH" @@ -16,7 +16,6 @@ announce "Installing dependencies" gem install bundler --conservative bundle check || bundle install - if [[ $* == *--reset* ]]; then announce "Recreating database" rails db:reset diff --git a/config/application.rb b/config/application.rb index 8613ced3d..984bfb09f 100644 --- a/config/application.rb +++ b/config/application.rb @@ -6,7 +6,7 @@ require "rails/all" # you've limited to :test, :development, or :production. Bundler.require(*Rails.groups) -module SplatApp +module Fizzy class Application < Rails::Application # Initialize configuration defaults for originally generated Rails version. config.load_defaults 8.0 diff --git a/config/cable.yml b/config/cable.yml index be671a765..2c90ad998 100644 --- a/config/cable.yml +++ b/config/cable.yml @@ -8,4 +8,4 @@ test: production: adapter: redis url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> - channel_prefix: splat_production + channel_prefix: fizzy_production diff --git a/config/environments/production.rb b/config/environments/production.rb index 3462fdb19..2b09c3501 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -63,7 +63,7 @@ Rails.application.configure do # 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 = "splat_production" + # config.active_job.queue_name_prefix = "fizzy_production" config.action_mailer.perform_caching = false