Class: Helpers
- Inherits:
-
Object
- Object
- Helpers
- Defined in:
- lib/git_survey/helpers.rb
Overview
Convenience utilities.
Class Method Summary collapse
Class Method Details
.anonymized(anonymize, string) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/git_survey/helpers.rb', line 3 def self.anonymized(anonymize, string) if anonymize Digest::MD5.hexdigest(string)[0...10] else string end end |