3 class Song < ActiveRecord::Base
4 has_many :usages, :dependent => :destroy
5 has_many :shows, :through => :usages
7 # The entire UI breaks down without a title
8 validates_presence_of :title
10 # Split the song into slides.
12 # Slides are separated by a blank line, indicated
13 # by two new-line characters. The parser is pretty
14 # tolerant of whitespace. See the RSpecs for examples.
16 Lyrix::LyricParser.new(lyrics).to_slides
20 attributes["artist"] || ''