Sha256: 42b20f14d975e2be975193a7dddb83a5b2fe39d523643d7839a1062dd6f4f3b2

Contents?: true

Size: 191 Bytes

Versions: 16

Compression:

Stored size: 191 Bytes

Contents

# frozen_string_literal: true

class Person
  attr_accessor :first_name, :last_name

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

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
sinclair-2.1.1 spec/support/models/person.rb
sinclair-2.1.0 spec/support/models/person.rb
sinclair-2.0.1 spec/support/models/person.rb
sinclair-2.0.0 spec/support/models/person.rb
sinclair-1.16.3 spec/support/models/person.rb
sinclair-1.16.2 spec/support/models/person.rb
sinclair-1.16.1 spec/support/models/person.rb
sinclair-1.16.0 spec/support/models/person.rb
sinclair-1.15.0 spec/support/models/person.rb
sinclair-1.14.2 spec/support/models/person.rb
sinclair-1.14.1 spec/support/models/person.rb
sinclair-1.14.0 spec/support/models/person.rb
sinclair-1.13.0 spec/support/models/person.rb
sinclair-1.12.1 spec/support/models/person.rb
sinclair-1.12.0 spec/support/models/person.rb
sinclair-1.11.0 spec/support/models/person.rb