module AvataxClient

Avalara Tax calculation service.

Attributes

configuration[W]

Public Class Methods

configuration() click to toggle source
# File lib/avatax_client.rb, line 19
def configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/avatax_client.rb, line 23
def configure
  yield configuration
end
reset() click to toggle source

Resets the configuration back to a new instance. Should only be used in testing.

# File lib/avatax_client.rb, line 28
def reset
  @configuration = Configuration.new
end