class DjVuTools

Ruby toolbox for manipulating DjVu files.

Constants

VERSION

Version number.

Public Class Methods

new(file) click to toggle source

@see DjVused#new

# File lib/djvu-tools.rb, line 12
def initialize file
  @djvu = DjVused.new file
end

Public Instance Methods

run() click to toggle source

Run djvused with the current command string.

# File lib/djvu-tools.rb, line 17
def run
  @djvu.save
end