Sha256: 03f563fd80afac2bad26f73d4902df6ab114b6dbc6915da1b3261cbcf76cd32e
Contents?: true
Size: 607 Bytes
Versions: 30
Compression:
Stored size: 607 Bytes
Contents
require 'rails_best_practices/checks/check' module RailsBestPractices module Checks # Check a partail view file to make sure there is no instance variable. # # Implementation: Check all instance variable, if exists, then it should be replaced with local variable class ReplaceInstanceVariableWithLocalVariableCheck < Check def interesting_nodes [:ivar] end def interesting_files PARTIAL_VIEW_FILES end def evaluate_start(node) add_error "replace instance variable with local variable" end end end end
Version data entries
30 entries across 30 versions & 1 rubygems