Module: Mysql2::Util
- Defined in:
- lib/mysql2.rb
Overview
For holding utility methods
Class Method Summary collapse
-
.key_hash_as_symbols(hash) ⇒ Object
Rekey a string-keyed hash with equivalent symbols.
Class Method Details
.key_hash_as_symbols(hash) ⇒ Object
Rekey a string-keyed hash with equivalent symbols.
61 62 63 64 |
# File 'lib/mysql2.rb', line 61 def self.key_hash_as_symbols(hash) return nil unless hash Hash[hash.map { |k,v| [k.to_sym, v] }] end |