Sha256: b57364780df81b23f53266ac3e479c3a5e121ac04471427457832e35d424da01
Contents?: true
Size: 202 Bytes
Versions: 7
Compression:
Stored size: 202 Bytes
Contents
# the ever-useful to_label method class ActiveRecord::Base def to_label %i[name label title to_s].each do |attribute| return send(attribute).to_s if respond_to?(attribute) end end end
Version data entries
7 entries across 7 versions & 1 rubygems