Method: VCLog::Heuristics.load
- Defined in:
- lib/vclog/heuristics.rb
.load(file) ⇒ Object
Load heuristics from a designated file.
17 18 19 20 |
# File 'lib/vclog/heuristics.rb', line 17 def self.load(file) raise LoadError unless File.exist?(file) new{ instance_eval(File.read(file), file) } end |