From 60d6b1909d913eeb01a6b86daf0b638f642b7e86 Mon Sep 17 00:00:00 2001 From: Fabrice Gangler Date: Thu, 6 Aug 2020 09:55:37 +0200 Subject: [PATCH] Fix for using APPLICATION_NAME in .env file Refs: #5450 --- config/application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/application.rb b/config/application.rb index 049f5f7ee..cc8508f4f 100644 --- a/config/application.rb +++ b/config/application.rb @@ -1,13 +1,13 @@ require File.expand_path('boot', __dir__) require 'rails/all' -require_relative 'application_name' # Require the gems listed in Gemfile, including any gems # you've limited to :test, :development, or :production. Bundler.require(*Rails.groups) Dotenv::Railtie.load +require_relative 'application_name' module TPS class Application < Rails::Application