module SideSQS

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/sidesqs/config.rb, line 2
def self.config
  @config ||= SideSQS::Configuration.new
end
configure() { |config| ... } click to toggle source
# File lib/sidesqs/config.rb, line 6
def self.configure
  if block_given?
    yield config
  end
end