module Noths

Constants

VERSION

Public Class Methods

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

Customize default settings for the SDK using block.

Noths.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.

# File lib/noths.rb, line 52
def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end