Sha256: ca6a51bc3c20d18a4143a7fabbb3e287e9ca9318f06175f6b8fa72f9cf7999d2

Contents?: true

Size: 182 Bytes

Versions: 2

Compression:

Stored size: 182 Bytes

Contents

class Person
  attr_reader :id, :first_name, :last_name

  def initialize(args={})
    @id = args[:id]
    @first_name = args[:first_name]
    @last_name = args[:last_name]
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
csv_to_object-0.0.2 test/lib/person.rb
csv_to_object-0.0.1 test/lib/person.rb