Sha256: dfa3746d8c73a0b278b90af77578eae1d1034604946c78ac5ed654f03b4801f8

Contents?: true

Size: 1.67 KB

Versions: 11

Compression:

Stored size: 1.67 KB

Contents

# frozen_string_literal: true

module Nanoc
  class CompilationItemView < ::Nanoc::BasicItemView
    # Returns the compiled content.
    #
    # @param [String] rep The name of the representation
    #   from which the compiled content should be fetched. By default, the
    #   compiled content will be fetched from the default representation.
    #
    # @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 of the given rep at the given snapshot.
    def compiled_content(rep: :default, snapshot: nil)
      reps.fetch(rep).compiled_content(snapshot: snapshot)
    end

    # Returns the item path, as used when being linked to. It starts
    # with a slash and it is relative to the output directory. It does not
    # include the path to the output directory. It will not include the
    # filename if the filename is an index filename.
    #
    # @param [String] rep The name of the representation
    #   from which the path should be fetched. By default, the path will be
    #   fetched from the default representation.
    #
    # @param [Symbol] snapshot The snapshot for which the
    #   path should be returned.
    #
    # @return [String] The item’s path.
    def path(rep: :default, snapshot: :last)
      reps.fetch(rep).path(snapshot: snapshot)
    end

    # Returns the representations of this item.
    #
    # @return [Nanoc::BasicItemRepCollectionView]
    def reps
      Nanoc::CompilationItemRepCollectionView.new(@context.reps[unwrap], @context)
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
nanoc-4.9.0 lib/nanoc/base/views/compilation_item_view.rb
nanoc-4.8.19 lib/nanoc/base/views/compilation_item_view.rb
nanoc-4.8.18 lib/nanoc/base/views/compilation_item_view.rb
nanoc-4.8.17 lib/nanoc/base/views/compilation_item_view.rb
nanoc-4.8.16 lib/nanoc/base/views/compilation_item_view.rb
nanoc-4.8.15 lib/nanoc/base/views/compilation_item_view.rb
nanoc-4.8.14 lib/nanoc/base/views/compilation_item_view.rb
nanoc-4.8.13 lib/nanoc/base/views/compilation_item_view.rb
nanoc-4.8.12 lib/nanoc/base/views/compilation_item_view.rb
nanoc-4.8.11 lib/nanoc/base/views/compilation_item_view.rb
nanoc-4.8.10 lib/nanoc/base/views/compilation_item_view.rb