Module: Zarby
- Defined in:
- lib/zarby.rb,
lib/zarby/csv.rb,
lib/zarby/version.rb,
lib/zarby/anonymize.rb,
lib/zarby/normalize.rb
Defined Under Namespace
Classes: Csv, NoColSepDetected, Normalize
Constant Summary collapse
- VERSION =
"0.2.0"
Class Method Summary collapse
- .anonymise(input, nb_chars: 2, mask_with: '*') ⇒ Object
- .detect_separator(content) ⇒ Object
- .utf8(input) ⇒ Object
Class Method Details
.anonymise(input, nb_chars: 2, mask_with: '*') ⇒ Object
9 10 11 |
# File 'lib/zarby.rb', line 9 def anonymise(input, nb_chars: 2, mask_with: '*') Anonymize.new(input:, nb_chars: nb_chars, mask_with: mask_with).call end |