Sha256: fb532450cda0d99264c5eb6110f2f36db9b863308b66798b479f55cdd84466f0
Contents?: true
Size: 1.54 KB
Versions: 15
Compression:
Stored size: 1.54 KB
Contents
# frozen_string_literal: true module Nanoc class CompilationItemRepView < ::Nanoc::BasicItemRepView # @abstract def item_view_class Nanoc::CompilationItemView end # Returns the item rep’s raw path. It includes the path to the output # directory and the full filename. # # @param [Symbol] snapshot The snapshot for which the path should be # returned. # # @return [String] The item rep’s raw path. def raw_path(snapshot: :last) @context.dependency_tracker.bounce(_unwrap.item, compiled_content: true) res = @item_rep.raw_path(snapshot: snapshot) unless @item_rep.compiled? Fiber.yield(Nanoc::Int::Errors::UnmetDependency.new(@item_rep)) end # Wait for file to exist if res start = Time.now sleep 0.05 until File.file?(res) || Time.now - start > 1.0 raise Nanoc::Int::Errors::InternalInconsistency, "File did not apear in time: #{res}" unless File.file?(res) end res end # Returns the compiled content. # # @param [String] snapshot The name of the snapshot from which to # fetch the compiled content. By default, the returned compiled content # will be the content compiled right before the first layout call (if # any). # # @return [String] The content at the given snapshot. def compiled_content(snapshot: nil) @context.dependency_tracker.bounce(_unwrap.item, compiled_content: true) @context.snapshot_repo.compiled_content(rep: _unwrap, snapshot: snapshot) end end end
Version data entries
15 entries across 15 versions & 1 rubygems