Sha256: 3c5fd5cf832cca12c8ccb0c92ed9d9a7930fef9d1854e562dafea2ac51a12646

Contents?: true

Size: 1.05 KB

Versions: 6

Compression:

Stored size: 1.05 KB

Contents

# Copyright (C) 2012-2016 Kouhei Sutou <kou@cozmixng.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

module Rabbit
  class PasswordReader
    def initialize(prompt)
      @prompt = prompt
    end

    def read
      print(@prompt)
      system("/bin/stty -echo") if $stdin.tty?
      $stdin.gets.chomp
    ensure
      if $stdin.tty?
        system("/bin/stty echo")
        puts
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rabbit-3.0.3 lib/rabbit/password-reader.rb
rabbit-3.0.2 lib/rabbit/password-reader.rb
rabbit-3.0.1 lib/rabbit/password-reader.rb
rabbit-3.0.0 lib/rabbit/password-reader.rb
rabbit-2.2.1 lib/rabbit/password-reader.rb
rabbit-2.2.0 lib/rabbit/password-reader.rb