Method: Delorean::Debug.log

Defined in:
lib/delorean/debug.rb

.log(obj) ⇒ Object



12
13
14
15
16
17
# File 'lib/delorean/debug.rb', line 12

def self.log(obj)
  File.open(@log_file, 'a+') do |f|
    f.write obj.inspect
    f.write "\n"
  end
end