Sha256: eb87f32024c985024ee0a2a9a2e020aafba73b0fc90d2f98068266f9621f7335
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 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 :ApplicationService, "#{services_path}/application_service" autoload :DeepMerger, "#{services_path}/deep_merger" 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 :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" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
peak_flow_utils-0.1.16 | lib/peak_flow_utils.rb |