We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The apartment.rb initializer, located in config/initializers, prior to Rails 5.1 used a string based class constant such as:
Rails.application.config.middleware.use 'Apartment::Elevators::Subdomain'
In Rails 5.1, this needs to be a class constant such as:
Rails.application.config.middleware.use Apartment::Elevators::Subdomain