Class: Date

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

Instance Method Summary collapse

Instance Method Details

#backup_dir(hourly) ⇒ Object

formatovani data do cesty pro zalohu



77
78
79
80
81
82
83
# File 'lib/lnbackup/util.rb', line 77

def backup_dir(hourly)
  if hourly
      "%d/%02d/%02d-%02d" % [year, month, day, Time.now.hour]
  else
      "%d/%02d/%02d" % [year, month, day]
  end
end