Sha256: 745934ec89d98f5315b83e52038756f30f38aa427262702a702bbcecfa6a66c1

Contents?: true

Size: 541 Bytes

Versions: 1

Compression:

Stored size: 541 Bytes

Contents

require 'active_support/all'
require 'active_record'
require 'active_job'
require 'ph_model'
require 'validate_url'
require 'faraday'

module WebhookSystem
  extend ActiveSupport::Autoload

  autoload :Subscription
  autoload :Dispatcher
  autoload :SubscriptionTopic
  autoload :Job
  autoload :Encoder
  autoload :BaseEvent
  autoload :EventLog

  # Error raised when there is an issue with decoding the payload
  class DecodingError < RuntimeError
  end

  class << self
    delegate :dispatch, to: :'WebhookSystem::Dispatcher'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
webhook_system-1.0.1 lib/webhook_system.rb