class Guard::RSpecFormatterResultsPath

Just a wrapper class for the results file filename

def initialize

def initialize
  path = ENV["GUARD_RSPEC_RESULTS_FILE"]
  if path.nil?
    STDERR.puts("Guard::RSpec: Warning: #{NO_ENV_WARNING_MSG}\n" \
                "Guard::RSpec: Warning: #{NO_RESULTS_VALUE_MSG}")
    path = RSpecDefaults::TEMPORARY_FILE_PATH
  end
  @path = File.expand_path(path)
end