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
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/thor-1.2.1/lib/thor/line_editor/basic.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/thor-1.3.0/lib/thor/line_editor/basic.rb
thor-1.3.0 lib/thor/line_editor/basic.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/thor-1.2.1/lib/thor/line_editor/basic.rb
thor-1.2.2 lib/thor/line_editor/basic.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/thor-1.2.1/lib/thor/line_editor/basic.rb
devcycle-ruby-server-sdk-2.0.0 vendor/bundle/ruby/3.0.0/gems/thor-1.2.1/lib/thor/line_editor/basic.rb
tdiary-5.2.4 vendor/bundle/ruby/3.1.0/gems/thor-1.2.1/lib/thor/line_editor/basic.rb
tdiary-5.2.3 vendor/bundle/ruby/3.1.0/gems/thor-1.2.1/lib/thor/line_editor/basic.rb
tdiary-5.2.2 vendor/bundle/ruby/3.1.0/gems/thor-1.2.1/lib/thor/line_editor/basic.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/thor-1.2.1/lib/thor/line_editor/basic.rb
tdiary-5.2.1 vendor/bundle/ruby/3.1.0/gems/thor-1.2.1/lib/thor/line_editor/basic.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/thor-1.1.0/lib/thor/line_editor/basic.rb
thor-1.2.1 lib/thor/line_editor/basic.rb
thor-1.2.0 lib/thor/line_editor/basic.rb
tdiary-5.2.0 vendor/bundle/ruby/2.7.0/gems/thor-1.1.0/lib/thor/line_editor/basic.rb
tdiary-5.2.0 vendor/bundle/ruby/3.0.0/gems/thor-1.1.0/lib/thor/line_editor/basic.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/thor-1.1.0/lib/thor/line_editor/basic.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/thor-1.1.0/lib/thor/line_editor/basic.rb