Sha256: c0da4aa46a3e8436836a77463e9841036b6f9706fb408b0e5fc86ee224ae63ab

Contents?: true

Size: 1.43 KB

Versions: 1

Compression:

Stored size: 1.43 KB

Contents

require_relative "peak_flow_utils/engine"

require "array_enumerator"
require "service_pattern"

module PeakFlowUtils
  path = "#{__dir__}/peak_flow_utils"
  models_path = "#{__dir__}/peak_flow_utils/models"
  services_path = File.realpath("#{__dir__}/../app/services/peak_flow_utils")

  autoload :InheritedLocalVar, "#{path}/inherited_local_var"
  autoload :Notifier, "#{path}/notifier"
  autoload :NotifierErrorParser, "#{path}/notifier_error_parser"
  autoload :NotifierRack, "#{path}/notifier_rack"
  autoload :NotifierRails, "#{path}/notifier_rails"
  autoload :NotifierResponse, "#{path}/notifier_response"
  autoload :NotifierSidekiq, "#{path}/notifier_sidekiq"
  autoload :HandlerHelper, "#{path}/handler_helper"
  autoload :ParseJson, "#{path}/parse_json"

  autoload :ApplicationRecord, "#{models_path}/application_record"
  autoload :Group, "#{models_path}/group"
  autoload :HandlerText, "#{models_path}/handler_text"
  autoload :Handler, "#{models_path}/handler"
  autoload :ScannedFile, "#{models_path}/scanned_file"
  autoload :TranslationKey, "#{models_path}/translation_key"
  autoload :TranslationValue, "#{models_path}/translation_value"

  autoload :ActiveJobParametersLogging, "#{services_path}/active_job_parameters_logging"
  autoload :ApplicationService, "#{services_path}/application_service"
  autoload :SidekiqParametersLogging, "#{services_path}/sidekiq_parameters_logging"
  autoload :DeepMerger, "#{services_path}/deep_merger"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
peak_flow_utils-0.1.19 lib/peak_flow_utils.rb