Sha256: 2776b5bb261e4e6f3bf608a65cf30cf9b078b605c7033bfc7f28a2edb4932e8f

Contents?: true

Size: 211 Bytes

Versions: 2

Compression:

Stored size: 211 Bytes

Contents

# frozen_string_literal: true

class Person
  attr_accessor :age, :height

  def brothers
    @brothers ||= 0
  end

  private

  def init_height
    @height = 178
  end

  def init_age
    @age ||= 1
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jace-0.1.1 spec/support/models/person.rb
jace-0.1.0 spec/support/models/person.rb