Sha256: a33ab78c67fc7987c08d8a45a713320f849bc3c53cf044ee04ae24657f231087

Contents?: true

Size: 588 Bytes

Versions: 7

Compression:

Stored size: 588 Bytes

Contents

#! /usr/bin/env ruby
#--
# PDF::Writer for Ruby.
#   http://rubyforge.org/projects/ruby-pdf/
#   Copyright 2003 - 2005 Austin Ziegler.
#
#   Licensed under a MIT-style licence. See LICENCE in the main distribution
#   for full licensing information.
#
# $Id: techbook 93 2005-06-13 20:03:53Z austin $
#++
begin
  require 'pdf/techbook'
rescue LoadError => le
  if le.message =~ %r{pdf/techbook$}
    root = File.dirname(File.dirname(File.expand_path(__FILE__)))
    $LOAD_PATH.unshift(File.join(root, "lib"))
    require 'pdf/techbook'
  else
    raise
  end
end

PDF::TechBook.run(ARGV)

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
mack-pdf_writer-0.8.3.1 lib/gems/pdf-writer-1.1.8/bin/techbook
mack-pdf_writer-0.8.3 lib/gems/pdf-writer-1.1.8/bin/techbook
mack-pdf_writer-0.8.2 lib/gems/pdf-writer-1.1.8/bin/techbook
pdf-writer-1.1.6 bin/techbook
pdf-writer-1.1.5 bin/techbook
pdf-writer-1.1.8 bin/techbook
pdf-writer-1.1.7 bin/techbook