Method: Student#to_s
- Defined in:
- lib/source/models/student.rb
#to_s ⇒ Object
Преобразование студента в строку
98 99 100 101 102 103 104 105 |
# File 'lib/source/models/student.rb', line 98 def to_s result = "#{last_name} #{first_name} #{father_name}" i[id phone telegram email git].each do |attr| attr_val = send(attr) result += ", #{attr}=#{attr_val}" unless attr_val.nil? end result end |