Sha256: 992905b04836581970d39bf8f8c99a8659b60259394d2453b51d9b6afc5b06b0
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
# frozen_string_literal: true require "attractor/version" require "attractor/gem_names" require "attractor/duration_parser" require "attractor/calculators/base_calculator" require "attractor/detectors/base_detector" require "attractor/reporters/base_reporter" require "attractor/suggester" require "attractor/watcher" require "attractor/cache" Dir[File.join(__dir__, "attractor", "reporters", "*.rb")].sort.each do |file| next if file.start_with?("base") require file end module Attractor class Error < StandardError; end @registry_entries = {} def register(registry_entry) @registry_entries[registry_entry.type] = registry_entry end def calculators_for_type(type, **options) registry_entry_for_type = @registry_entries[type] return {type => registry_entry_for_type.calculator_class.new(**options)} if type Hash[@registry_entries.map do |type, entry| [type, entry.calculator_class.new(**options)] if entry.detector_class.new.detect end.compact] end module_function :calculators_for_type module_function :register end Attractor::GemNames.new.to_a.each do |gem_name| require "attractor/#{gem_name}" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
attractor-2.3.0 | lib/attractor.rb~ |
attractor-2.2.0 | lib/attractor.rb |