From d3bb345803cc1cad8da1e33f4d39232f15247bd4 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Wed, 2 Nov 2016 11:36:32 +0000 Subject: Fix File.exists? deprecation warnings in Active Support --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index e22d594848..096bbbc324 100644 --- a/Gemfile +++ b/Gemfile @@ -71,7 +71,7 @@ platforms :mri_18 do end # Add your own local bundler stuff -instance_eval File.read '.Gemfile' if File.exists? '.Gemfile' +instance_eval File.read '.Gemfile' if File.exist? '.Gemfile' platforms :mri do group :test do -- cgit v1.2.3