Can a 3rd party gem "inject" itself into app initialization?

@trevorturk Please try with providers:

config/providers/alba.rb

# frozen_string_literal: true

Hanami.application.register_provider :alba do
  prepare do
    require "alba"
    Alba.inflector = target["inflector"]
  end
end

cc: @timriley