# File lib/rhc/helpers.rb, line 294
    def agree(*args, &block)
      #args.push(interactive?.presence) if args.length == 1
      block = lambda do |q|
        q.validate = /\A(?:y|yes|n|no)\Z/i
      end unless block_given?
      super *args, &block
    end