Sha256: b2683156e074625aac703e7682976e5279a6db9a3eff3ccb558347d8c6ef52e5
Contents?: true
Size: 505 Bytes
Versions: 218
Compression:
Stored size: 505 Bytes
Contents
# encoding: utf-8 require "logstash/namespace" require "logstash/util" # This class exists to quietly wrap a password string so that, when printed or # logged, you don't accidentally print the password itself. class LogStash::Util::Password attr_reader :value public def initialize(password) @value = password end # def initialize public def to_s return "<password>" end # def to_s public def inspect return to_s end # def inspect end # class LogStash::Util::Password
Version data entries
218 entries across 209 versions & 18 rubygems