Sha256: 4aca834d865bf6b264dfb1e48be51bd3fa3fcd5a917f22f752fae8dbe332e246

Contents?: true

Size: 627 Bytes

Versions: 5

Compression:

Stored size: 627 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

        attr_reader :bundle

        include Delegator
        include IndexedDelegator

        def initialize bundle
          @bundle = bundle
        end

        def clear; end
        def dump; end
        def empty; end
        def generate_caches_from_memory; end
        def generate_partial_from arg; end
        def index; end
        def load; end

      end

    end

  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
picky-3.5.4 lib/picky/wrappers/bundle/exact_partial.rb
picky-3.5.3 lib/picky/wrappers/bundle/exact_partial.rb
picky-3.5.2 lib/picky/wrappers/bundle/exact_partial.rb
picky-3.5.1 lib/picky/wrappers/bundle/exact_partial.rb
picky-3.5.0 lib/picky/wrappers/bundle/exact_partial.rb