Sha256: 5ec98fae9c766f5bbe0a260092ca367b2f43ce7f71700047cf40471bda150e3c

Contents?: true

Size: 152 Bytes

Versions: 19

Compression:

Stored size: 152 Bytes

Contents

# frozen_string_literal: true

class Car
  attr_reader :model, :maker

  def initialize(model:, maker:)
    @model = model
    @maker = maker
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
arstotzka-1.6.2 spec/support/models/car.rb
arstotzka-1.6.1 spec/support/models/car.rb
arstotzka-1.6.0 spec/support/models/car.rb
arstotzka-1.5.0 spec/support/models/car.rb
arstotzka-1.4.4 spec/support/models/car.rb
arstotzka-1.4.3 spec/support/models/car.rb
arstotzka-1.4.2 spec/support/models/car.rb
arstotzka-1.4.1 spec/support/models/car.rb
arstotzka-1.4.0 spec/support/models/car.rb
arstotzka-1.3.2 spec/support/models/car.rb
arstotzka-1.3.1 spec/support/models/car.rb
arstotzka-1.3.0 spec/support/models/car.rb
arstotzka-1.2.4 spec/support/models/car.rb
arstotzka-1.2.3 spec/support/models/car.rb
arstotzka-1.2.2 spec/support/models/car.rb
arstotzka-1.2.1 spec/support/models/car.rb
arstotzka-1.2.0 spec/support/models/car.rb
arstotzka-1.1.0 spec/support/models/car.rb
arstotzka-1.0.4 spec/support/models/car.rb