Class: RailsBestPractices::Prepares::MailerPrepare

Inherits:
Core::Check
  • Object
show all
Includes:
Core::Check::Classable
Defined in:
lib/rails_best_practices/prepares/mailer_prepare.rb

Overview

Remember the mailer names.

Constant Summary

Constants inherited from Core::Check

Core::Check::ALL_FILES, Core::Check::CONTROLLER_FILES, Core::Check::DEPLOY_FILES, Core::Check::HELPER_FILES, Core::Check::MAILER_FILES, Core::Check::MIGRATION_FILES, Core::Check::MODEL_FILES, Core::Check::PARTIAL_VIEW_FILES, Core::Check::ROUTE_FILES, Core::Check::SCHEMA_FILE, Core::Check::VIEW_FILES

Instance Method Summary collapse

Methods included from Core::Check::Classable

#classable_modules, #current_class_name, #current_extend_class_name, included

Methods inherited from Core::Check

add_callback, #add_error, #after_prepare, #after_review, callbacks, #errors, #increment_total_files_checked!, interesting_files, #interesting_files, interesting_nodes, #interesting_nodes, #method_missing, #node_end, #node_start, #parse_file?, #result, #total_files_checked, #url

Constructor Details

#initializeMailerPrepare

Returns a new instance of MailerPrepare.



13
14
15
# File 'lib/rails_best_practices/prepares/mailer_prepare.rb', line 13

def initialize
  @mailers = Prepares.mailers
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class RailsBestPractices::Core::Check

Instance Method Details

#start_class(node) ⇒ Object

check class node.

if it is a subclass of ActionMailer::Base, then remember its class name.



21
22
23
24
25
# File 'lib/rails_best_practices/prepares/mailer_prepare.rb', line 21

def start_class(node)
  if "ActionMailer::Base" == current_extend_class_name
    @mailers << @klass
  end
end