class Convection::Model::Smash

Hash with auto-generating sparse keys

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/convection/model/template/mapping.rb, line 9
def initialize(*args)
  super do |hash, key|
    hash[key] = Smash.new
  end
end