Skip to content

Commit 007ef9f

Browse files
committed
- File.exists? is deprecated, changed to use File.exist? instead.
1 parent a55ef78 commit 007ef9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/dummy/config/boot.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Set up gems listed in the Gemfile.
22
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
33

4-
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
4+
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
55
$LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)

0 commit comments

Comments
 (0)