Class: Hashtastic::Utils
- Inherits:
-
Object
- Object
- Hashtastic::Utils
- Defined in:
- lib/hashtastic/utils.rb
Class Method Summary collapse
Class Method Details
.hex_to_ascii(hex) ⇒ Object
6 7 8 9 10 |
# File 'lib/hashtastic/utils.rb', line 6 def hex_to_ascii(hex) value = hex[2..-1] if hex[0..1] == '0x' [value].pack('H*') end |