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