Class: Pathname
Instance Method Summary collapse
Instance Method Details
#human_size ⇒ Object
53 54 55 56 57 58 59 60 61 |
# File 'lib/sup/util.rb', line 53 def human_size s = begin size rescue SystemCallError return "?" end s.to_human_size end |
#human_time ⇒ Object
63 64 65 66 67 68 69 |
# File 'lib/sup/util.rb', line 63 def human_time begin ctime.strftime("%Y-%m-%d %H:%M") rescue SystemCallError "?" end end |