Sha256: 884169236d4451d842cf87df1268ea50fca49ddf2ca8c99aac3f1e0b7e8fe9a4
Contents?: true
Size: 739 Bytes
Versions: 18
Compression:
Stored size: 739 Bytes
Contents
module Vedeu module Renderers # Provides shared functionality to Vedeu::Renderer classes. # module Options # :nocov: # @!attribute [w] options # @return [Hash<Symbol => void>] attr_writer :options def compress? options[:compression] || false end private # Combines the options provided at instantiation with the # default values. # # @return [Hash<Symbol => void>] def options defaults.merge!(@options) end # The default values for a new instance of this class. # # @return [Hash<Symbol => void>] def defaults {} end # :nocov: end # Options end # Renderers end # Vedeu
Version data entries
18 entries across 18 versions & 1 rubygems