module PandaGo

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/pandago.rb, line 12
def configuration
  @configuration ||= self::Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/pandago.rb, line 8
def configure
  yield configuration if block_given?
end
convert(file, from:, to:) click to toggle source
# File lib/pandago.rb, line 16
def convert(file, from:, to:)
  self::Converter.new(file, from, to, configuration).convert
end