Class: Hash
Instance Method Summary collapse
Instance Method Details
#deep_freeze ⇒ Object
2 3 4 5 6 |
# File 'lib/importu/core_ext/hash/deep_freeze.rb', line 2 def deep_freeze return self if frozen? values.each(&:deep_freeze) freeze end |