class Asciidoctor::Converter::DefaultFactoryProxy

Public Instance Methods

catch_all() click to toggle source
# File lib/asciidoctor/converter.rb, line 355
def catch_all
  @registry.default || super
end
for(backend) click to toggle source
# File lib/asciidoctor/converter.rb, line 349
def for backend
  @registry.fetch(backend) { super }
end
unregister_all() click to toggle source
# File lib/asciidoctor/converter.rb, line 344
def unregister_all
  super
  @registry.clear.default = nil
end