Class: RuboCop::Cop::Bridgetown::NoPutsAllowed

Inherits:
RuboCop::Cop
  • Object
show all
Defined in:
lib/rubocop/cop/bridgetown/no_puts_allowed.rb

Constant Summary collapse

MSG =
"Avoid using `puts` to print things. Use `Bridgetown.logger` instead."

Instance Method Summary collapse

Instance Method Details

#on_send(node) ⇒ Object



11
12
13
# File 'lib/rubocop/cop/bridgetown/no_puts_allowed.rb', line 11

def on_send(node)
  add_offense(node, :location => :selector) if puts_called?(node)
end