Skip to content

Commit 572b038

Browse files
authored
Merge pull request bootstrap-ruby#290 from tricknotes/file-exist
Use `File.exist?` instead of `File.exists?`
2 parents 7492861 + 96bab46 commit 572b038

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,4 +1,4 @@
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'])

0 commit comments

Comments
 (0)