module Rubillow

Top-level interface to Rubillow

Constants

VERSION

@private

Public Class Methods

configuration() click to toggle source

@return [Configuration] Current configuration.

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

Call this method to modify defaults in your initializers.

@example

Rubillow.configure do |configuration|
  configuration.zwsid = "abcd1234"
end

@yield [Configuration] The current configuration.

# File lib/rubillow.rb, line 23
def self.configure
  yield(configuration)
end