module OBF::OBF

Constants

FORMAT
FORMAT_CURRENT_VERSION

Public Class Methods

from_external(board, dest_path) click to toggle source
# File lib/obf/obf.rb, line 8
def self.from_external(board, dest_path)
  OBF::External.to_obf(board, dest_path)
end
to_external(obf, opts) click to toggle source
# File lib/obf/obf.rb, line 4
def self.to_external(obf, opts)
  OBF::External.from_obf(obf, opts)
end
to_pdf(obf, dest_path, opts={}) click to toggle source
# File lib/obf/obf.rb, line 12
def self.to_pdf(obf, dest_path, opts={})
  OBF::PDF.from_obf(obf, dest_path, nil, opts)
end
to_png(obf, dest_path) click to toggle source
# File lib/obf/obf.rb, line 16
def self.to_png(obf, dest_path)
  OBF::PNG.from_obf(obf, dest_path)
end