Method: VCLog::Config#heuristics

Defined in:
lib/vclog/config.rb

#heuristicsObject

Load heuristics.



71
72
73
74
75
76
77
78
79
# File 'lib/vclog/config.rb', line 71

def heuristics
  @heuristics ||= (
    if file
      Heuristics.load(file)
    else
      Heuristics.new
    end
  )
end