No route changes or models views on administrate:install with Rails 6.rc1
Created by: zdrummond
Steps With Rails 6.rc1 installed, create a new app
rails new administrates --skip-coffee --database=postgresql
and new model
rails g scaffold user name email
then after bundling the administrate gem, run install
❯ rails generate administrate:install
Running via Spring preloader in process 16421
create app/controllers/admin/application_controller.rb
Expected Getting started guide says
The installer adds some new routes to your config/routes.rb, and creates a controller at app/controllers/admin/application_controller.rb
In addition, the generator creates a Dashboard and a Controller for each of your ActiveRecord resources:
So I would expect new routes for the admin pane plus a dashboard and controller for my model
Actual One Admin app controller, but nothing else