Sha256: 111a598eba3be5a798f4f9fe03c67ee80ab6341585175747c79d33401beeb1f3
Contents?: true
Size: 627 Bytes
Versions: 4
Compression:
Stored size: 627 Bytes
Contents
# frozen_string_literal: true require_relative "../munster" require_relative "controllers/receive_webhooks_controller" require_relative "jobs/processing_job" require_relative "models/received_webhook" require_relative "base_handler" module Munster class Engine < ::Rails::Engine isolate_namespace Munster autoload :Munster, "munster" autoload :ReceiveWebhooksController, "munster/controllers/receive_webhooks_controller" autoload :ProcessingJob, "munster/jobs/processing_job" autoload :BaseHandler, "munster/base_handler" generators do require_relative "install_generator" end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
munster-0.3.1 | lib/munster/engine.rb |
munster-0.3.0 | lib/munster/engine.rb |
munster-0.2.0 | lib/munster/engine.rb |
munster-0.1.0 | lib/munster/engine.rb |