codeclimate/codeclimate-yaml

View on GitHub
lib/cc/yaml/nodes/glob_list.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CC
  module Yaml
    module Nodes
      class GlobList < Sequence
        type Glob

        def allow_child?(child)
          !child.value.nil?
        end
      end
    end
  end
end