Betterment / demo_mode

A configurable demo mode for your Rails app. Specify your desired "personas" and Demo Mode will handle the rest.
MIT License
23 stars 8 forks source link

Fix initializer for Rails 7 support #9

Closed effron closed 1 year ago

effron commented 1 year ago

When starting a Rails 7 app, I ran into this error

NameError:
  uninitialized constant ApplicationController
  Did you mean?  ApplicationHelper

This happened because in Rails 7, the app can no longer configure the autoloader, so app.config.respond_to(:autoloader) would return false. This caused the pre-rails 6.x branch of the initializer to run.

Rather than fix the initializer to work with Rails 5.x, 6.x, and 7.x, I removed support for Rails 5.x.