5 6 7 8 9 10
# File 'lib/daigaku/congratulator.rb', line 5 def self.message lines = Terminal.text(:congratulations).lines.map(&:strip).compact count = lines.count.zero? ? 0 : (lines.count - 1) random_value = rand(0..count) lines[random_value] end