Method: Clin::Shell#no?

Defined in:
lib/clin/shell.rb

#no?(statement, options = {}) ⇒ Boolean

Yes or no question defaulted to no

See Also:



97
98
99
100
# File 'lib/clin/shell.rb', line 97

def no?(statement, options = {})
  options[:default] = :no
  yes_or_no(statement, **options)
end