Method: Burden::Statistics#save
- Defined in:
- lib/burden/statistics.rb
#save ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/burden/statistics.rb', line 12 def save # FIXME # if Burden.storage.ready? # Burden.storage.runs.create(name: name, success: success, execution_time: execution_time, timestamp: timestamp) # end File.open(Burden.config.log_file, 'a') do |f| f.write() f.close end end |