#encoding: utf-8 module Flyboy class Roadmap < Prawn::Document attr_accessor :tasks def initialize(tasks) super(:page_layout => :landscape) @tasks = tasks end def build font_size 10 text "Plan d'actions au #{I18n.l(Date.today)}", :size => 20 move_down(10) display_tasks(@tasks) end def display_tasks(tasks) display = [['Action', 'Titre', 'Echéance']] tasks.each do |t| display << [ t.goal.title, t.title, I18n.l(t.term) ] end table display move_down(10) end end end