class Console::Output::Sensitive::Filter

def call(text)

@returns [String] The filtered text.
@parameter text [String] The text to filter.

Apply the filter to the given text. This will replace all occurrences of the pattern with the corresponding substitution.
def call(text)
	text.gsub(@pattern, @substitutions)
end