module AsposeBarcodeCloud

Constants

VERSION

Public Class Methods

configure() { |instance| ... } click to toggle source

Configure sdk using block. AsposeBarcodeCloud.configure do |config|

config.username = "xxx"
config.password = "xxx"

end If no block given, return the configuration singleton instance.

# File lib/aspose_barcode_cloud.rb, line 31
def configure
  if block_given?
    yield Configuration.instance
  else
    Configuration.instance
  end
end