Description: Generate the platform scaffold for the Bootstrap framework. Example: rails generate repres:bootstrap:platform administration --version 4 This will insert the following routing into the config/routes.rb: namespace :administration do namespace :v4 do resources :dashboards, only: :show end end This will create the following files: app/assets/images/shared app/assets/images/administration/v4/shared app/assets/javascripts/shared app/assets/javascripts/administration/v4/shared app/assets/stylesheets/shared app/assets/stylesheets/administration/v4/shared app/controllers/concerns/priviledge_protection.rb app/controllers/administration/v4/privileged_controller.rb app/controllers/administration/v4/dashboards_controller.rb app/helpers/administration/v4/platform_helper.rb app/views/layouts/administration/v4.html.erb app/views/shared app/views/administration/v4/shared/_script.html.erb app/views/administration/v4/shared/_style.html.erb