Sha256: 3c1f4ffc5e89ff592ac539c943176a095aabe21ca86cc8475322c2a1e4c86ccd

Contents?: true

Size: 1.6 KB

Versions: 22

Compression:

Stored size: 1.6 KB

Contents

module Nanoc
  module WithRepsViewMixin
    # 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::ItemRepCollectionView]
    def reps
      Nanoc::ItemRepCollectionView.new(@context.reps[unwrap], @context)
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
nanoc-4.7.9 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.7.8 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.7.7 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.7.6 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.7.5 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.7.4 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.7.3 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.7.2 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.7.1 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.7.0 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.6.4 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.6.3 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.6.2 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.6.1 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.6.0 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.5.4 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.5.3 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.5.2 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.5.1 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb
nanoc-4.5.0 lib/nanoc/base/views/mixins/with_reps_view_mixin.rb