Flowdock
method

delete_app_assets_if_api_option

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: Rails::Generators::AppGenerator
delete_app_assets_if_api_option() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/generators/rails/app/app_generator.rb, line 381
      def delete_app_assets_if_api_option
        if options[:api]
          remove_dir "app/assets"
          remove_dir "lib/assets"
          remove_dir "tmp/cache/assets"
        end
      end
Register or log in to add new notes.