class BigKeeper::CommandLineUtil

Public Class Methods

double_check(tips) click to toggle source
# File lib/big_keeper/util/command_line_util.rb, line 3
def self.double_check(tips)
  Logger.highlight("#{tips} (y/n)")
  input = STDIN.gets().chop
  input.eql?('y')
end