Sha256: 9e0f5c9092ec5c02cea776f9b08de80364a799b3e6e757fc410c7a737e8e53cd
Contents?: true
Size: 676 Bytes
Versions: 21
Compression:
Stored size: 676 Bytes
Contents
# encoding: utf-8 module RuboCop module Cop module Rails # This cop checks for the use of output calls like puts and print class Output < Cop MSG = 'Do not write to stdout. Use Rails\' logger if you want to log.' BLACKLIST = [:puts, :print, :p, :pp, :pretty_print] def on_send(node) receiver, method_name, *args = *node return unless receiver.nil? && !args.empty? && BLACKLIST.include?(method_name) add_offense(node, :selector) end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems