Sha256: 87deabeb5258721ba445d2f8e32628ab229ba55f490e1cfaf51e12b7cb73ef40

Contents?: true

Size: 769 Bytes

Versions: 1

Compression:

Stored size: 769 Bytes

Contents

require 'forwardable'

module Interactive
  class Question
    extend Forwardable
    attr_accessor :question, :options
    def_delegators :@question_type, :reask!

    def initialize(&block)
      yield self

      @options = Interactive::Options(Array(@options))

      raise ArgumentError, "question cannot be nil nor empty." if question.nil? || question.empty?
      @question_type = @options.has_hash? ? QuestionWithEagerFullExplanation.new(self) : QuestionWithLazyFullExplanation.new(self)
    end

    def ask_and_wait_for_valid_response(&block)
      @question_type.ask_and_wait_for_valid_response(&block)
    end

    def ask(&block)
      ask_and_wait_for_valid_response(&block)
    end

    private

    def response
      STDIN.gets.chomp
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
interactive-0.5.0 lib/interactive/question.rb