Sha256: 3d1f7b0da48abbda86337846b73be010a0dc36686ca3539fa436d351b787edf9
Contents?: true
Size: 487 Bytes
Versions: 4
Compression:
Stored size: 487 Bytes
Contents
# encoding: utf-8 module Nanoc::Int # Represents the site configuration. # # @api private class Configuration < ::Hash # Creates a new configuration with the given hash. # # @param [Hash] hash The actual configuration hash def initialize(hash) replace(hash) end # Returns an object that can be used for uniquely identifying objects. # # @return [Object] An unique reference to this object def reference :config end end end
Version data entries
4 entries across 4 versions & 1 rubygems