Sha256: 8b3c742a9c2151a2c79620be0c998a01859f2d249d98dc84f3c3a4d7e8b04664
Contents?: true
Size: 252 Bytes
Versions: 18
Compression:
Stored size: 252 Bytes
Contents
module AbstractImporter class ImportPlan def initialize @plan = {} # <-- requires Ruby 1.9's ordered hash end def to_h @plan.dup end def method_missing(plural, &block) @plan[plural] = block end end end
Version data entries
18 entries across 18 versions & 1 rubygems