Method: SimpleCov::LastRun.read

Defined in:
lib/simplecov/last_run.rb

.readObject

[View source]

12
13
14
15
16
17
18
19
# File 'lib/simplecov/last_run.rb', line 12

def read
  return nil unless File.exist?(last_run_path)

  json = File.read(last_run_path)
  return nil if json.strip.empty?

  JSON.parse(json, symbolize_names: true)
end