class Console::Output::Sensitive::Filter
A simple filter for redacting sensitive information.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/sensitive.rb, line 109 def initialize(substitutions) @substitutions = substitutions @pattern = Regexp.union(substitutions.keys) end
Create a new filter.
@parameter substitutions [Hash] The substitutions to apply.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/sensitive.rb, line 118 def call(text) text.gsub(@pattern, @substitutions) end
Apply the filter to the given text. This will replace all occurrences of the pattern with the corresponding substitution.
@parameter text [String] The text to filter. @returns [String] The filtered text.