Check a controller file to make sure that model logic should not exist in controller, move it into a model.
Implementation: check the count of method calling of a model, if it is more than defined called count, then it contains model logic.
# File lib/rails_best_practices/checks/move_model_logic_into_model_check.rb, line 24 def evaluate_start(node) @variables = {} node.recursive_children do |child| case child.node_type when :attrasgn, :call call_node(child) end end @variables.each do |variable, count| add_error "move model logic into model (#{variable.to_ruby} called_count > #{@called_count})" if count > @called_count end @variables = nil end
Generated with the Darkfish Rdoc Generator 2.