Method: Obfuscate.clarify

Defined in:
lib/obfuscate.rb

.clarify(text, options = {}) ⇒ String

Clarify obfuscated text. Depends on Obfuscate.setup to be called first

Parameters:

  • text (String)

    to be clarified

  • options (Hash) (defaults to: {})

    overrides how clarify should be handled

Returns:

  • (String)


39
40
41
# File 'lib/obfuscate.rb', line 39

def clarify(text, options = {} )
  cryptor( options ).clarify( text )
end