Sha256: b64b27577347ecfbbfbeca416044c3337c64ea9c1840d54d23f64f1b80d753e7
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Rake # This cop detects method definition in a task or namespace, # because it is defined to the top level. # It is confusing because the scope looks in the task or namespace, # but actually it is defined to the top level. # # @example # # bad # task :foo do # def helper_method # do_something # end # end # # # bad # namespace :foo do # def helper_method # do_something # end # end # # # good - It is also defined to the top level, # # but it looks expected behavior. # def helper_method # end # task :foo do # end # class MethodDefinitionInTask < Base MSG = 'Do not define a method in rake task, because it will be defined to the top level.' def on_def(node) return if Helper::ClassDefinition.in_class_definition?(node) return unless Helper::TaskDefinition.in_task_or_namespace?(node) add_offense(node) end alias on_defs on_def end end end end
Version data entries
2 entries across 2 versions & 2 rubygems