# File lib/luck/label.rb, line 15
  def align_text text
    case @alignment
      when :center
        text.center width
      when :right
        text.rjust width
      else
        text.ljust width
    end
  end