Module: Webhukhs

Defined in:
lib/webhukhs.rb,
lib/webhukhs/engine.rb,
lib/webhukhs/version.rb,
lib/webhukhs/base_handler.rb,
lib/webhukhs/install_generator.rb,
lib/webhukhs/jobs/processing_job.rb,
lib/webhukhs/models/received_webhook.rb,
lib/webhukhs/controllers/receive_webhooks_controller.rb

Overview

Namespace for webhook ingestion and processing classes.

Defined Under Namespace

Classes: BaseHandler, Configuration, Engine, InstallGenerator, ProcessingJob, ReceiveWebhooksController, ReceivedWebhook

Constant Summary collapse

VERSION =
"0.7.0"

Class Method Summary collapse

Class Method Details

.configurationWebhukhs::Configuration

Returns singleton configuration object.



13
14
15
# File 'lib/webhukhs.rb', line 13

def self.configuration
  @configuration ||= Configuration.new
end

.configure {|configuration| ... } ⇒ void

This method returns an undefined value.

Yields global configuration object for setup.

Yield Parameters:



21
22
23
# File 'lib/webhukhs.rb', line 21

def self.configure
  yield configuration
end