Sha256: bff67a4243493dfd3d5eae0e62dc5d8b38580515742edefaa506f8fa6a92883b

Contents?: true

Size: 1.07 KB

Versions: 41

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true

module Nanoc
  class MutableItemCollectionView < Nanoc::MutableIdentifiableCollectionView
    # @api private
    def view_class
      Nanoc::MutableItemView
    end

    # Creates a new item and adds it to the site’s collection of items.
    #
    # @param [String] content The uncompiled item content (if it is a textual
    #   item) or the path to the filename containing the content (if it is a
    #   binary item).
    #
    # @param [Hash] attributes A hash containing this item's attributes.
    #
    # @param [Nanoc::Identifier, String] identifier This item's identifier.
    #
    # @param [Boolean] binary Whether or not this item is binary
    #
    # @param [String] filename Absolute path to the file
    #   containing this content (if any)
    #
    # @return [self]
    def create(content, attributes, identifier, binary: false, filename: nil)
      content = Nanoc::Int::Content.create(content, binary: binary, filename: filename)
      @objects = @objects.add(Nanoc::Int::Item.new(content, attributes, identifier))
      self
    end
  end
end

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
nanoc-4.7.10 lib/nanoc/base/views/mutable_item_collection_view.rb