module Fattura24

Constants

VERSION

Public Class Methods

configuration() click to toggle source

Returns current configuration object

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

Calling this method will yield to a block passing the configuration object as parameter.

# File lib/fattura24.rb, line 26
def self.configure
  yield configuration
end