Sha256: a9bf842fb0f5e7ff2eb80bcf56f93769a1c5e3292652ccf8baa7eef8dfe04271

Contents?: true

Size: 628 Bytes

Versions: 200

Compression:

Stored size: 628 Bytes

Contents

class Thor
  module LineEditor
    class Basic
      attr_reader :prompt, :options

      def self.available?
        true
      end

      def initialize(prompt, options)
        @prompt = prompt
        @options = options
      end

      def readline
        $stdout.print(prompt)
        get_input
      end

    private

      def get_input
        if echo?
          $stdin.gets
        else
          # Lazy-load io/console since it is gem-ified as of 2.3
          require "io/console"
          $stdin.noecho(&:gets)
        end
      end

      def echo?
        options.fetch(:echo, true)
      end
    end
  end
end

Version data entries

200 entries across 153 versions & 20 rubygems

Version Path
thor-1.3.2 lib/thor/line_editor/basic.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/thor-1.3.1/lib/thor/line_editor/basic.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/thor-1.3.1/lib/thor/line_editor/basic.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/thor-1.3.1/lib/thor/line_editor/basic.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/thor-1.3.1/lib/thor/line_editor/basic.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/thor-1.3.1/lib/thor/line_editor/basic.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
thor-1.3.1 lib/thor/line_editor/basic.rb
harbr-0.2.10 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.2.9 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.2.8 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.2.7 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.2.6 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.2.5 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.2.4 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.2.3 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.2.2 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.2.1 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.2.0 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
harbr-0.1.99 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb