]> git.r.bdr.sh - rbdr/lyricli.rb/blobdiff - lib/lyricli/configuration.rb
fix warn that File.exists 'been deprecated in 2.1
[rbdr/lyricli.rb] / lib / lyricli / configuration.rb
index 811526b5d06b62491106b00e6c1f46d01ec80fd3..53a3e2bb9566b6c8b533330d18af0990dc0bccbb 100644 (file)
@@ -56,7 +56,7 @@ module Lyricli
     def load_config
       path = File.expand_path(@config_path)
 
     def load_config
       path = File.expand_path(@config_path)
 
-      if File.exists?(path)
+      if File.exist?(path)
         file = File.new(path, "r")
         @config = MultiJson.decode(file.read)
       else
         file = File.new(path, "r")
         @config = MultiJson.decode(file.read)
       else
@@ -79,7 +79,7 @@ module Lyricli
       # Load the default
       path = File.join(::Lyricli.root, "config", @defaults_path)
 
       # Load the default
       path = File.join(::Lyricli.root, "config", @defaults_path)
 
-      if File.exists?(path)
+      if File.exist?(path)
         file = File.new(path, "r")
         @config = MultiJson.decode(file.read)
       else
         file = File.new(path, "r")
         @config = MultiJson.decode(file.read)
       else