class Nanoc::Core::MutableItemCollectionView
Public Instance Methods
create(content, attributes, identifier, binary: false, filename: nil)
click to toggle source
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::Core::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]
# File lib/nanoc/core/mutable_item_collection_view.rb, line 27 def create(content, attributes, identifier, binary: false, filename: nil) content = Nanoc::Core::Content.create(content, binary: binary, filename: filename) @objects = @objects.add(Nanoc::Core::Item.new(content, attributes, identifier)) self end
view_class()
click to toggle source
@api private
# File lib/nanoc/core/mutable_item_collection_view.rb, line 7 def view_class Nanoc::Core::MutableItemView end