Sha256: 4dc51ec8e6b8640e65e99a7f832ec90316be77cc3834735e233660831e6c13ac

Contents?: true

Size: 840 Bytes

Versions: 6511

Compression:

Stored size: 840 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks for END blocks in method definitions.
      #
      # @example
      #
      #   # bad
      #
      #   def some_method
      #     END { do_something }
      #   end
      #
      # @example
      #
      #   # good
      #
      #   def some_method
      #     at_exit { do_something }
      #   end
      #
      # @example
      #
      #   # good
      #
      #   # outside defs
      #   END { do_something }
      class EndInMethod < Cop
        MSG = '`END` found in method definition. Use `at_exit` instead.'.freeze

        def on_postexe(node)
          inside_of_method = node.each_ancestor(:def, :defs).count.nonzero?
          add_offense(node, location: :keyword) if inside_of_method
        end
      end
    end
  end
end

Version data entries

6,511 entries across 6,505 versions & 25 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/lint/end_in_method.rb
rubocop-0.57.2 lib/rubocop/cop/lint/end_in_method.rb
rubocop-0.57.1 lib/rubocop/cop/lint/end_in_method.rb
rubocop-0.57.0 lib/rubocop/cop/lint/end_in_method.rb
rubocop-0.56.0 lib/rubocop/cop/lint/end_in_method.rb
rubocop-0.55.0 lib/rubocop/cop/lint/end_in_method.rb
rubocop-0.54.0 lib/rubocop/cop/lint/end_in_method.rb
rubocop-0.53.0 lib/rubocop/cop/lint/end_in_method.rb
rubocop-0.52.1 lib/rubocop/cop/lint/end_in_method.rb
rubocop-0.52.0 lib/rubocop/cop/lint/end_in_method.rb
rubocop-0.51.0 lib/rubocop/cop/lint/end_in_method.rb