= ThinReports Generator ThinReports is Open Source Reporting Solution for Ruby. And it provide you these tools. * ThinReports Editor (GUI Layout Editor) * ThinReports Generator (Report Generation Interface for Ruby) Please refer to {Official Site}[http://www.thinreports.org/] and {Project Site}[http://osc.matsukei.net/projects/thinreports/wiki] for more details. == Quick Start Getting started with ThinReports Generator can be as simple as: require 'thinreports' report = ThinReports::Report.new :layout => 'report.tlf' report.start_new_page do page.item(:title).value('ThinReports') end report.generate_file(:pdf, 'report.pdf') Or can be as: ThinReports::Report.generate_file(:pdf, 'report.pdf', :layout => 'report.tlf') do start_new_page page.item(:title).value('ThinReports') start_new_page page.item(:title).value('ThinReports').style(:fill, 'red') end {Learn more}[http://osc.matsukei.net/projects/thinreports/wiki/Getting_Started]. == Documentation We provide you a few useful resources to help you get started with ThinReports. * {Getting Started}[http://osc.matsukei.net/projects/thinreports/wiki/Getting_Started] * {Guide}[http://osc.matsukei.net/projects/thinreports/wiki/Guide] * {Roadmap}[http://osc.matsukei.net/projects/thinreports/roadmap] * {Changelog}[http://osc.matsukei.net/projects/thinreports/wiki/Changelog] == Source Code Please see {here}[http://osc.matsukei.net/projects/thinreports/wiki/Source_Code]. == Community Support * {Open Forum}[http://osc.matsukei.net/projects/thinreports/boards] * {Issue Tracker (Read-Only)}[http://osc.matsukei.net/projects/thinreports/issues] == Dependencies * prawn = 0.11.1 * json >= 1.4.6 (Only for less than Ruby 1.9) === Note We tested on Ruby 1.8.7 and 1.9.2. We recommend 1.9.2+. == Resources === Fonts ThinReports includes the following fonts. * IPAFonts: Copyright(c) 2003-2011 Information-technology Promotion Agency, Japan. Please see the lincense file {IPA_Font_License_Agreement_v1.0.txt}[http://ipafont.ipa.go.jp/ipa_font_license_v1.html]. == License (The MIT License) Copyright (c) 2010-2011 Matsukei Co.,Ltd. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.