Sha256: 18717a9f5a39aa109d0dae7fcb6a959113feb2da5f6bfc6ad2d203cb5b3c93af
Contents?: true
Size: 502 Bytes
Versions: 26
Compression:
Stored size: 502 Bytes
Contents
# frozen_string_literal: true module Nanoc class View # @api private def initialize(context) @context = context end # @api private def _context @context end # @api private def _unwrap raise NotImplementedError end # True if the wrapped object is frozen; false otherwise. # # @return [Boolean] # # @see Object#frozen? def frozen? _unwrap.frozen? end def inspect "<#{self.class}>" end end end
Version data entries
26 entries across 26 versions & 1 rubygems