Sha256: 9b637e59aa506e4a78f6dec4d7ba1231fbde57182a84e6ba12754b75de051717
Contents?: true
Size: 1.16 KB
Versions: 3
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true module Vedeu module Repositories # Some classes expect a certain set of attributes when # initialized, this module uses the #defaults method of the class # to provide missing attribute keys (and values). # # @api private # module Defaults # Returns a new instance of the class including this module. # # @note # If a particular key is missing from the attributes # parameter, then it is added with the respective value from # #defaults. # # @param attributes [Hash] # @return [void] A new instance of the class including this # module. def initialize(attributes = {}) fail Vedeu::Error::InvalidSyntax, 'Argument :attributes is not a Hash.' unless attributes.is_a?(Hash) attrs = attributes.keep_if { |key, _| defaults.key?(key) } defaults.merge!(attrs).each do |key, value| instance_variable_set("@#{key}", value || defaults.fetch(key)) end end private # @return [Hash<void>] def defaults {} end end # Defaults end # Repositories end # Vedeu
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vedeu-0.8.3 | lib/vedeu/repositories/defaults.rb |
vedeu-0.8.2 | lib/vedeu/repositories/defaults.rb |
vedeu-0.8.1 | lib/vedeu/repositories/defaults.rb |