Sha256: 188274ee70625870a52efe925bbad13c9297f63faa87d9c99d5627383ad88485
Contents?: true
Size: 159 Bytes
Versions: 2
Compression:
Stored size: 159 Bytes
Contents
# frozen_string_literal: true class Person attr_accessor :age def brothers @brothers ||= 0 end private def init_age @age ||= 1 end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jace-0.0.3 | spec/support/models/person.rb |
jace-0.0.2 | spec/support/models/person.rb |