summaryrefslogtreecommitdiff
path: root/lib/custodian/parser.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 12:37:48 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 12:37:48 +0000
commite0868062c1132f1816479515a22a8f55d2dddee9 (patch)
tree53969f3cf47205c04398baca0fc07bc869989ac9 /lib/custodian/parser.rb
parent0e158a3b400c324e35e0617d04508f375a86c633 (diff)
File.exists? is deprecated.
We prefer "File.exist?". Flagged by rubocop.
Diffstat (limited to 'lib/custodian/parser.rb')
-rw-r--r--lib/custodian/parser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/parser.rb b/lib/custodian/parser.rb
index 733d375..9d1095a 100644
--- a/lib/custodian/parser.rb
+++ b/lib/custodian/parser.rb
@@ -413,7 +413,7 @@ module Custodian
def parse_file( filename )
raise ArgumentError, "Missing configuration file!" if ( filename.nil? )
- raise ArgumentError, "File not found: #{@file}" unless ( File.exists?( filename) )
+ raise ArgumentError, "File not found: #{@file}" unless ( File.exist?( filename) )
#
# Read the configuration file.