Class: Pathname

Inherits:
Object show all
Defined in:
lib/sup/util.rb

Instance Method Summary collapse

Instance Method Details

#human_sizeObject



56
57
58
59
60
61
62
63
64
# File 'lib/sup/util.rb', line 56

def human_size
  s =
    begin
      size
    rescue SystemCallError
      return "?"
    end
  s.to_human_size
end

#human_timeObject



66
67
68
69
70
71
72
# File 'lib/sup/util.rb', line 66

def human_time
  begin
    ctime.strftime("%Y-%m-%d %H:%M")
  rescue SystemCallError
    "?"
  end
end