method

delete_app_views_if_api_option

rails latest stable - Class: Rails::Generators::AppGenerator

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.0.0) is shown here.

delete_app_views_if_api_option()
public

No documentation available.

# File railties/lib/rails/generators/rails/app/app_generator.rb, line 400
      def delete_app_views_if_api_option
        if options[:api]
          if options[:skip_action_mailer]
            remove_dir "app/views"
          else
            remove_file "app/views/layouts/application.html.erb"
          end
        end
      end