Skip to content

Commit 8b32cb6

Browse files
committed
#35 Fixing naming issues
1 parent ed1c02c commit 8b32cb6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# README - cppdist-com-rails
1+
# README - ermahgerd-rails-api-jwt
22
33
The Rails API server for Canadian Pump & Packing Distribution. Serves up JSONAPI payloads for an EmberJs SPA
44
over at [https://github.com/cybertooth-io/ccpdist-com-emberjs](https://github.com/cybertooth-io/ccpdist-com-emberjs).

config/application.rb

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

22-
module CppdistComRails
22+
module ErmahgerdRailsApiJwt
2323
# The rails application. Note the name of the module this belongs too. If you duplicate repos you will want to
2424
# adjust this module name.
2525
class Application < Rails::Application

config/cable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ test:
77
production:
88
adapter: redis
99
url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
10-
channel_prefix: cppdist-com-rails_production
10+
channel_prefix: ermahgerd-rails-api-jwt_production

config/environments/production.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
config.eager_load = true
1414

1515
# Full error reports are disabled and caching is turned on.
16-
config.consider_all_requests_local = false
16+
config.consider_all_requests_local = false
1717
config.action_controller.perform_caching = true
1818

1919
# Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
@@ -54,7 +54,7 @@
5454

5555
# Use a real queuing backend for Active Job (and separate queues per environment)
5656
# config.active_job.queue_adapter = :resque
57-
# config.active_job.queue_name_prefix = "cppdist-com-rails_#{Rails.env}"
57+
# config.active_job.queue_name_prefix = "ermahgerd-rails-api-jwt_#{Rails.env}"
5858

5959
config.action_mailer.perform_caching = false
6060

@@ -77,9 +77,9 @@
7777
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
7878

7979
if ENV['RAILS_LOG_TO_STDOUT'].present?
80-
logger = ActiveSupport::Logger.new(STDOUT)
80+
logger = ActiveSupport::Logger.new(STDOUT)
8181
logger.formatter = config.log_formatter
82-
config.logger = ActiveSupport::TaggedLogging.new(logger)
82+
config.logger = ActiveSupport::TaggedLogging.new(logger)
8383
end
8484

8585
# Do not dump schema after migrations.

0 commit comments

Comments
 (0)