Sha256: 9c4e57edd5788f6223e754775f6bfb05aebf8de972e26bb4254b3a9f58083c72
Contents?: true
Size: 542 Bytes
Versions: 56
Compression:
Stored size: 542 Bytes
Contents
# frozen_string_literal: true require 'eac_ruby_utils/console/configs/entry_reader' module EacRubyUtils module Console class Configs class PasswordEntryReader < ::EacRubyUtils::Console::Configs::EntryReader ENTRY_KEY = 'core.store_passwords' def initialize(console_configs, entry_key, options = {}) super(console_configs, entry_key, options.merge(noecho: true, store: console_configs.store_passwords?)) end end end end end
Version data entries
56 entries across 56 versions & 3 rubygems