Method: Eye::Checker::FileCTime#human_value

Defined in:
lib/eye/checker/file_ctime.rb

#human_value(value) ⇒ Object



12
13
14
15
16
17
18
# File 'lib/eye/checker/file_ctime.rb', line 12

def human_value(value)
  if value == nil
    'Err'
  else
    value.strftime('%H:%M')
  end
end