diff options
author | Paul Duncan <pabs@pablotron.org> | 2021-10-14 12:47:50 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2021-10-14 12:47:50 -0400 |
commit | 4b6c0e31385f5f27a151088c0a2b614495c4e589 (patch) | |
tree | 12243cdcd00704bc1a9d94ac9cc128459417370c /content/posts/2005-10-12-generating-pdfs-with-ruby.html | |
download | pablotron.org-4b6c0e31385f5f27a151088c0a2b614495c4e589.tar.bz2 pablotron.org-4b6c0e31385f5f27a151088c0a2b614495c4e589.zip |
initial commit, including theme
Diffstat (limited to 'content/posts/2005-10-12-generating-pdfs-with-ruby.html')
-rw-r--r-- | content/posts/2005-10-12-generating-pdfs-with-ruby.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/content/posts/2005-10-12-generating-pdfs-with-ruby.html b/content/posts/2005-10-12-generating-pdfs-with-ruby.html new file mode 100644 index 0000000..691512a --- /dev/null +++ b/content/posts/2005-10-12-generating-pdfs-with-ruby.html @@ -0,0 +1,13 @@ +--- +date: "2005-10-12T04:41:45Z" +title: Generating PDFs with Ruby +--- + +<p> +One problem I've run across a couple of times at work is generating automated <acronym title='Portable Document Format'>PDF</acronym>s. While reading the <a href='http://www.artima.com/rubycs/index.html'>Ruby section of Artima</a>, I stumbled across <a href='http://www.artima.com/rubycs/articles/pdf_writer.html'>"Creating Printable Documents with Ruby"</a>, which cover's <a href='http://www.halostatue.ca/'>Austin Ziegler's</a> <acronym title='Portable Document Format'>PDF</acronym> library for <a href='http://ruby-lang.org/'>Ruby</a>, <a href='http://ruby-pdf.rubyforge.org/'>PDF::Writer</a>. Besides having a great <acronym title='Application Programmer Interface'>API</acronym>, <a href='http://ruby-pdf.rubyforge.org/'>PDF::Writer</a> also has an <a href='http://ruby-pdf.rubyforge.org/pdf-writer/manual/index.html'>extensive manual</a> (generated by <a href='http://ruby-pdf.rubyforge.org/'>PDF::Writer</a>, of course), wrappers for common tasks such as generating <a href='http://ruby-pdf.rubyforge.org/pdf-writer/doc/classes/PDF/SimpleTable.html'>tables</a>, <a href='http://ruby-pdf.rubyforge.org/pdf-writer/doc/classes/PDF/QuickRef.html'>reference sheets, and brochures</a>, +</p> + +<p> +I'm wondering how long it'll take before someone writes a <acronym title='Portable Document Format'>PDF</acronym> target for <a href='http://dev.rubycentral.com/downloads/ri.html'><acronym title='Ruby Interactive'>RI</acronym></a>, or, even better, <a href='http://rdoc.sourceforge.net/'>RDoc</a>. In the mean time, I have something that'll give me an excuse to use more <a href='http://ruby-lang.org/'>Ruby</a> at work. +</p> + |