Sha256: 4c70362533eff8c9442060cdb4d5a157ecc283e5a82d7e9ba6a6bc69245a5c5e
Contents?: true
Size: 1.66 KB
Versions: 1
Compression:
Stored size: 1.66 KB
Contents
# frozen_string_literal: true require 'markaby' class Song attr_accessor :title, :artist, :capo, :key, :tempo, :year, :album, :tuning, :sections def initialize @sections = [] end def to_html mab = Markaby::Builder.new(song: self) mab.div.song do h1.title song.title if song.title h2.artist song.artist if song.artist dl.information do if song.tuning dt.tuning 'Tuning' dd.tuning song.tuning end if song.capo dt.capo 'Capo' dd.capo song.capo end if song.key dt.key 'Key' dd.key song.key end if song.tempo dt.tempo 'Tempo' dd.tempo song.tempo end if song.year dt.year 'Year' dd.year song.year end if song.album dt.album 'Album' dd.album song.album end end song.sections.each do |section| div.section do div.name section.name div.lines do section.lines.each do |line| if line.tablature? div.tablature do line.tablature end else div.line do line.parts.each do |part| div.part do div.chord part.chord div.lyric part.lyric end end end end end end end end end mab.to_s end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
song_pro-0.1.1 | lib/song_pro/song.rb |