Sha256: 00c80d5dda04705796dcc1760a92d8f3cf3f066e694229fe63ae325ab3f36820

Contents?: true

Size: 189 Bytes

Versions: 27

Compression:

Stored size: 189 Bytes

Contents

# frozen_string_literal: true

class Person
  attr_reader :first_name, :last_name

  def initialize(first_name, last_name)
    @first_name = first_name
    @last_name = last_name
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
sinclair-1.3.2 spec/support/models/person.rb
sinclair-1.3.1 spec/support/models/person.rb
sinclair-1.3.0 spec/support/models/person.rb
sinclair-1.2.1 spec/support/models/person.rb
sinclair-1.2.0 spec/support/models/person.rb
sinclair-1.1.3 spec/support/models/person.rb
sinclair-1.1.2 spec/support/models/person.rb