# File lib/terminal-table/cell.rb, line 46 def align(val, position, length) positions = { :left => :ljust, :right => :rjust, :center => :center } val.public_send(positions[position], length) end