Skip to content

Commit e0763d4

Browse files
committed
Splat -> Fizzy
1 parent adbe830 commit e0763d4

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

bin/setup

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -eo pipefail
33

44
app_root="$( cd "$(dirname "$0")/.."; pwd )"
5-
app_name="splat"
5+
app_name="fizzy"
66

77
# Use application binstubs
88
export PATH="$app_root/bin:$PATH"
@@ -16,7 +16,6 @@ announce "Installing dependencies"
1616
gem install bundler --conservative
1717
bundle check || bundle install
1818

19-
2019
if [[ $* == *--reset* ]]; then
2120
announce "Recreating database"
2221
rails db:reset

config/application.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# you've limited to :test, :development, or :production.
77
Bundler.require(*Rails.groups)
88

9-
module SplatApp
9+
module Fizzy
1010
class Application < Rails::Application
1111
# Initialize configuration defaults for originally generated Rails version.
1212
config.load_defaults 8.0

config/cable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ test:
88
production:
99
adapter: redis
1010
url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
11-
channel_prefix: splat_production
11+
channel_prefix: fizzy_production

config/environments/production.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
# Use a real queuing backend for Active Job (and separate queues per environment).
6565
# config.active_job.queue_adapter = :resque
66-
# config.active_job.queue_name_prefix = "splat_production"
66+
# config.active_job.queue_name_prefix = "fizzy_production"
6767

6868
config.action_mailer.perform_caching = false
6969

0 commit comments

Comments
 (0)