diff options
author | Go MAEDA <maeda@farend.jp> | 2021-12-27 03:20:31 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2021-12-27 03:20:31 +0000 |
commit | 4db7397d2a46e745da298a4abd5d6f9e3002e2d2 (patch) | |
tree | e86884a4edf8e414b6dc32582763458a724e88a2 /config/boot.rb | |
parent | 91c00f51ec9d9ade33d2bb22a8e67c8cf6b29ba8 (diff) | |
download | redmine-4db7397d2a46e745da298a4abd5d6f9e3002e2d2.tar.gz redmine-4db7397d2a46e745da298a4abd5d6f9e3002e2d2.zip |
Use File.exist? instead of deprecated File.exists? (#36358).
git-svn-id: http://svn.redmine.org/redmine/trunk@21327 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/boot.rb')
-rw-r--r-- | config/boot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/boot.rb b/config/boot.rb index 4bb97ac51..7479b5aff 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -3,4 +3,4 @@ # Set up gems listed in the Gemfile. ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) -require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE']) +require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) |