Sha256: bd0172378d89491925929c1d079c051784cec518a99ee01fe14d6993f8ea0aae

Contents?: true

Size: 546 Bytes

Versions: 7

Compression:

Stored size: 546 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$
#++
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 & 3 rubygems

Version Path
ypdf-writer-1.3.5 bin/techbook
ypdf-writer-1.3.3 bin/techbook
ypdf-writer-1.3.2 bin/techbook
metaskills-pdf-writer-1.2.2 bin/techbook
metaskills-pdf-writer-1.2.3 bin/techbook
eventioz-pdf-writer-1.2.4 bin/techbook
eventioz-pdf-writer-1.0 bin/techbook