Skip to content

Instantly share code, notes, and snippets.

@hidakatsuya
Created September 4, 2012 15:05
Show Gist options
  • Save hidakatsuya/3622117 to your computer and use it in GitHub Desktop.
Save hidakatsuya/3622117 to your computer and use it in GitHub Desktop.
[ThinReports] 一覧表の手動作成・手動改ページ
report = ThinReports::Report.new :layout => 'list.tlf'
@tasks.each do |task|
if report.list.overflow?
report.start_new_page
end
report.list.page_break if task.done?
report.list.add_row :name => task.name
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment