class Object

Constants

DATA

Return quotes and truths about the great Roberto Barros

HIHY

Public Instance Methods

puts_data_splitting_by_newline(data) click to toggle source
# File lib/before_tickets.rb, line 9
def puts_data_splitting_by_newline(data)
  puts
  if data.include? '/n'
    data.split('/n').each do |line|
      puts line
    end
  else
    puts data
  end
  puts
end