frankfurter/lib/provider/adapters.rb
BadMark d0a43e357a
Some checks failed
CI/CD Pipeline / test (push) Has been cancelled
CI/CD Pipeline / publish (push) Has been cancelled
CI/CD Pipeline / release (push) Has been cancelled
up
2026-05-21 01:38:14 -06:00

7 lines
191 B
Ruby

# frozen_string_literal: true
require "provider/adapters/adapter"
Dir[File.expand_path("adapters/*.rb", __dir__)].sort.each do |file|
require file unless file.end_with?("adapter.rb")
end