frankfurter/lib/provider/adapters.rb

8 lines
191 B
Ruby
Raw Permalink Normal View History

2026-05-21 01:38:14 -06:00
# 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