lib/suspenders/app_builder.rb in cosmit-suspenders-1.36.0 vs lib/suspenders/app_builder.rb in cosmit-suspenders-1.36.1

- old
+ new

@@ -305,23 +305,27 @@ append_file "config/environments/production.rb", rack_timeout_config end def configure_simple_form + bundle_command "install" bundle_command "exec rails generate simple_form:install" end def configure_devise + bundle_command "install" bundle_command "exec rails generate devise:install" end def configure_active_admin + bundle_command "install" bundle_command "exec rails generate active_admin:install" bundle_command "exec rake db:migrate" bundle_command "exec rake db:seed" end def configure_initjs + bundle_command "install" bundle_command 'exec rails generate initjs:install' end def configure_action_mailer action_mailer_host "development", %{"localhost:3000"}