Sha256: 14eb148a80da837979079ec42107ca44e87c935a1e7b02df466cb4df043a9577
Contents?: true
Size: 386 Bytes
Versions: 12
Compression:
Stored size: 386 Bytes
Contents
# frozen_string_literal: true require_relative 'data_list' class DataListStudentShort < DataList # Делаем приватный new предка публичным public_class_method :new def column_names ['Фамилия И. О.', 'Гит', 'Контакт'] end protected def table_fields(obj) [obj.last_name_and_initials, obj.git, obj.contact] end end
Version data entries
12 entries across 12 versions & 5 rubygems