Sha256: 752abd86fc850f7a9b1872565da51632f2d6fc2c2c2638e094c1c77c86155dfe

Contents?: true

Size: 418 Bytes

Versions: 7

Compression:

Stored size: 418 Bytes

Contents

module Picky

  # encoding: utf-8
  #
  module Indexing # :nodoc:all

    module Bundle

      # The memory version dumps its generated indexes to disk
      # (mostly JSON) to load them into memory on startup.
      #
      class Memory < Base

        def initialize name, category, *args
          super name, category, *args

          @backend = Backend::Files.new self
        end

      end

    end

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
picky-3.0.1 lib/picky/indexing/bundle/memory.rb
picky-3.0.0 lib/picky/indexing/bundle/memory.rb
picky-3.0.0.pre5 lib/picky/indexing/bundle/memory.rb
picky-3.0.0.pre4 lib/picky/indexing/bundle/memory.rb
picky-3.0.0.pre3 lib/picky/indexing/bundle/memory.rb
picky-3.0.0.pre2 lib/picky/indexing/bundle/memory.rb
picky-3.0.0.pre1 lib/picky/indexing/bundle/memory.rb