Sha256: c06ed3b58955655e09aab8930efbf47b053de47c36367152384f6e8e8570ff7b
Contents?: true
Size: 263 Bytes
Versions: 53
Compression:
Stored size: 263 Bytes
Contents
# frozen_string_literal: true module Nanoc class MutableConfigView < Nanoc::ConfigView # Sets the value for the given attribute. # # @param [Symbol] key # # @see Hash#[]= def []=(key, value) @config[key] = value end end end
Version data entries
53 entries across 53 versions & 1 rubygems