module AsposeHtml

Constants

VERSION

Public Class Methods

configure(args) { |default| ... } click to toggle source
# File lib/aspose_html.rb, line 59
def configure(args)
  if block_given?
    yield(Configuration.default(args))
  else
    Configuration.default(args)
  end
end