Flowdock
method

delete_action_mailer_files_skipping_action_mailer

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: Rails::Generators::AppGenerator
delete_action_mailer_files_skipping_action_mailer() 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 439
      def delete_action_mailer_files_skipping_action_mailer
        if options[:skip_action_mailer]
          remove_file "app/views/layouts/mailer.html.erb"
          remove_file "app/views/layouts/mailer.text.erb"
          remove_dir "app/mailers"
          remove_dir "test/mailers"
        end
      end
Register or log in to add new notes.