class BackupsCLI

Public Instance Methods

rotate(name) click to toggle source
# File lib/backups.rb, line 13
def rotate(name)
  if options[:complete]

    exit
  end
  if name
    puts "rotating #{name}"
  else
    puts "giving you a selection"
  end
end