Sha256: 0a52ed1d39d39239a589c5851beb2872ade57db41afed05112350e8adac78a8a
Contents?: true
Size: 332 Bytes
Versions: 31
Compression:
Stored size: 332 Bytes
Contents
class Factory class Proxy #:nodoc: class AttributesFor < Proxy #:nodoc: def initialize(klass) @hash = {} end def get(attribute) @hash[attribute] end def set(attribute, value) @hash[attribute] = value end def result @hash end end end end
Version data entries
31 entries across 31 versions & 13 rubygems