Why are third party gems not loaded by default?

@wuarmin I suggested something that doesn’t work anymore in Hanami 2: initializers.
My apologize.

If you need to require a “global” gem, for now you should do it manually in config/app.rb

begin
  require "awesome_print"
rescue LoadError
end
1 Like