diff options
author | Go MAEDA <maeda@farend.jp> | 2022-12-09 05:42:57 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2022-12-09 05:42:57 +0000 |
commit | f506ba3dedabbd4ac3eb758314d6f131e892a722 (patch) | |
tree | 65b7f0f8c97c7176d4b347e73ce9d3aeae71ecc4 | |
parent | 0b39cc154d7b343601db6cdb740d7b3ba2787890 (diff) | |
download | redmine-f506ba3dedabbd4ac3eb758314d6f131e892a722.tar.gz redmine-f506ba3dedabbd4ac3eb758314d6f131e892a722.zip |
Fix RuboCop offense Style/RedundantConstantBase (#36919).
git-svn-id: https://svn.redmine.org/redmine/trunk@21989 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | config.ru | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ # This file is used by Rack-based servers to start the application. -require ::File.expand_path('../config/environment', __FILE__) +require_relative 'config/environment' run Rails.application |