8 lines
191 B
Ruby
8 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
|