Method: Flexdot::Output#log

Defined in:
lib/flexdot/output.rb

#log(home_file) {|status| ... } ⇒ Object

Yields:

  • (status)


14
15
16
17
18
# File 'lib/flexdot/output.rb', line 14

def log(home_file)
  status = Status.new(home_file)
  yield(status)
  puts message_for(status)
end