Sha256: 6aaf4809e55a16474b3f2fb0c7b12e89c3b82134cd860b21f9650322d5d4b918
Contents?: true
Size: 1.56 KB
Versions: 10
Compression:
Stored size: 1.56 KB
Contents
module Vedeu # Provides generic repository related behaviour. # # @api private module Store include Enumerable # @param block [Proc] # @return [Enumerator] def each(&block) storage.each(&block) end # Return a boolean indicating whether the storage is empty. # # @return [Boolean] def empty? storage.empty? end # Returns a boolean indicating whether the named model is registered. # # @param name [String] # @return [Boolean] def exists?(name) return false if empty? || name.nil? || name.empty? storage.include?(name) end alias_method :registered?, :exists? # Returns a collection of the names of all the registered entities. # # @return [Array] def registered return [] if empty? return storage.keys if storage.is_a?(Hash) return storage.to_a if storage.is_a?(Set) storage end # Remove all currently stored data. # # @return [Array|Hash|Set] def reset Vedeu.log(type: :reset, message: "(#{self.class.name}) #{registered.inspect}") @storage = in_memory end alias_method :reset!, :reset alias_method :clear, :reset # Return the number of entries stored. # # @return [Fixnum] def size storage.size end # Return whole repository; provides raw access to the storage for this # repository. # # @return [Array|Hash|Set] def storage @storage ||= in_memory end alias_method :all, :storage end # Store end # Vedeu
Version data entries
10 entries across 10 versions & 1 rubygems