Sha256: a951329c8c68f67b0cd1b807426a457a43ffa9ceaa43ec8907927952560ee0e8
Contents?: true
Size: 391 Bytes
Versions: 1
Compression:
Stored size: 391 Bytes
Contents
# frozen_string_literal: true require_relative 'inboxable/version' require_relative 'inboxable/configuration' require_relative 'inboxable/polling_receiver_worker' module Inboxable class Error < StandardError; end class << self attr_accessor :configuration def configure @configuration ||= Configuration.new yield(@configuration) if block_given? end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
inboxable-0.1.0 | lib/inboxable.rb |