Sha256: 835460e79e156f5ceb209f1bb44ccd688c6d2ab52dd3c302542f9f2f9ca65505

Contents?: true

Size: 534 Bytes

Versions: 2

Compression:

Stored size: 534 Bytes

Contents

# encoding: utf-8
#
module Picky

  module Wrappers

    module Bundle

      # This index combines a partial and exact
      # bundle such that a partial index will not
      # be dumped or generated.
      #
      class ExactPartial < Wrapper

        # Ignore these.
        #
        def clear; end
        def dump; end
        def empty; end
        def index; end
        def load(*); end
        
        def to_tree_s indent = 0
          bundle.to_tree_s(indent) { "(reference)" }
        end

      end

    end

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
picky-4.31.3 lib/picky/wrappers/bundle/exact_partial.rb
picky-4.31.2 lib/picky/wrappers/bundle/exact_partial.rb