Sha256: c77b62f6820fc80d50bdd7de2c8b9c6ee989fb5d8d1fabdbd0a033a016d84564
Contents?: true
Size: 650 Bytes
Versions: 24
Compression:
Stored size: 650 Bytes
Contents
require 'rails_best_practices/checks/check' module RailsBestPractices module Checks # Check a model to make sure finders are on their own model. # # Implementation: check if :find is called by other model. class KeepFindersOnTheirOwnModelCheck < Check def interesting_nodes [:call] end def interesting_files MODLE_FILES end def evaluate_start(node) add_error "keep finders on their own model" if others_finder?(node) end private def others_finder?(node) node.message == :find and node.subject.node_type == :call end end end end
Version data entries
24 entries across 24 versions & 1 rubygems