Sha256: 0c31e4b8f0a6fac0ec0f4e063552e1502158ed12653710421dff58beade8dd76

Contents?: true

Size: 1.38 KB

Versions: 4

Compression:

Stored size: 1.38 KB

Contents

# frozen_string_literal: true
#
# Copyright:: 2019, Chef Software Inc.
# Author:: Tim Smith (<tsmith@chef.io>)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

module RuboCop
  module Cop
    module Chef
      module ChefSharing
        # metadata.rb should not include fields with an empty string. Either don't include the field or add a value.
        #
        # @example
        #
        #   # bad
        #   license ''
        #
        #   # good
        #   license 'Apache-2.0'
        #
        class EmptyMetadataField < Cop
          MSG = 'Cookbook metadata.rb contains an field with an empty string.'

          def_node_matcher :field?, '(send nil? _ $str ...)'

          def on_send(node)
            field?(node) do |str|
              add_offense(str, location: :expression, message: MSG, severity: :refactor) if str.value.empty?
            end
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cookstyle-6.15.3 lib/rubocop/cop/chef/sharing/empty_metadata_field.rb
cookstyle-6.14.7 lib/rubocop/cop/chef/sharing/empty_metadata_field.rb
cookstyle-6.13.3 lib/rubocop/cop/chef/sharing/empty_metadata_field.rb
cookstyle-6.12.6 lib/rubocop/cop/chef/sharing/empty_metadata_field.rb