Class: RQ::Backer

Inherits:
MainHelper show all
Defined in:
lib/rq-0.1.7/backer.rb

Constant Summary

Constants included from Logging

Logging::DIV0, Logging::DIV1, Logging::DIV2, Logging::DIV3, Logging::EOL, Logging::SEC0, Logging::SEC1, Logging::SEC2, Logging::SEC3

Instance Attribute Summary

Attributes inherited from MainHelper

#argv, #cmd, #env, #logger, #main, #mode, #options, #q, #qpath

Instance Method Summary collapse

Methods inherited from MainHelper

#initialize, #set_q

Methods included from Logging

append_features

Methods included from Logging::LogMethods

#debug, #error, #fatal, #info, #logerr, #logger, #logger=, #warn

Methods included from Util

#alive?, append_features, #btrace, #columnize, #defval, #emsg, #erreq, #errmsg, #escape, #escape!, #exec, export, #fork, #getopt, #hashify, #host, #hostname, #klass, #maim, #mcp, #realpath, #stamptime, #system, #timestamp, #tmpnam, #uncache

Constructor Details

This class inherits a constructor from RQ::MainHelper

Instance Method Details

#backupObject

{{{



11
12
13
14
15
16
17
18
19
20
21
# File 'lib/rq-0.1.7/backer.rb', line 11

def backup 
    #{{{
  set_q
  bak = @argv.shift
  bak ||= "#{ File::basename(@qpath) }.#{ Util::timestamp.gsub(/[:\s\.-]/,'_') }.bak"
  raise "<#{ bak }> exists" if bak and test(?e, bak)
  debug{ "bak <#{ bak }>" }
  @q.lock{ FileUtils::cp_r @qpath, bak }
  info{ "created backup <#{ bak }>" }
    #}}}
end