Method: String#to_hex

Defined in:
lib/thefox-ext/ext/string.rb

#to_hexObject



39
40
41
# File 'lib/thefox-ext/ext/string.rb', line 39

def to_hex
  self.split('').map{ |c| sprintf '%02x', c.ord }.join
end