Sha256: 262ca2cf7e31214e1897b5076cb2bb3108a64ac451674bceafdb433fb331c9fa
Contents?: true
Size: 1.27 KB
Versions: 3
Compression:
Stored size: 1.27 KB
Contents
# encoding: utf-8 module Rubocop module Cop module Style # This cop checks for uses of unidiomatic method names # from the Enumerable module. # # The current definition of the check is flawed and should be # enhanced by check for by blocks & procs as arguments of the # methods. class CollectionMethods < Cop MSG = 'Prefer %s over %s.' def self.preferred_methods if config['PreferredMethods'] config['PreferredMethods'].symbolize_keys end end def on_block(node) method, _args, _body = *node check_method_node(method) end def on_send(node) _receiver, _method_name, *args = *node if args.size == 1 && args.first.type == :block_pass check_method_node(node) end end private def check_method_node(node) _receiver, method_name, *_args = *node if self.class.preferred_methods[method_name] add_offence( :convention, node.loc.selector, sprintf(MSG, self.class.preferred_methods[method_name], method_name) ) end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rubocop-0.11.1 | lib/rubocop/cop/style/collection_methods.rb |
rubocop-0.11.0 | lib/rubocop/cop/style/collection_methods.rb |
rubocop-0.10.0 | lib/rubocop/cop/style/collection_methods.rb |