module Idonethis class SettingsFile class << self def exists?; File.exists?(path); end def path @@path ||= File.expand_path("~/.idonethis.settings") end end end end