Sha256: aab49df403218fa71f75bf584ab252d77d1cea928b42362e4e4c797faa106a09

Contents?: true

Size: 1.39 KB

Versions: 1

Compression:

Stored size: 1.39 KB

Contents

# encoding: utf-8

# @api private
module Nanoc::ArrayExtensions
  # Returns a new array where all items' keys are recursively converted to
  # symbols by calling {Nanoc::ArrayExtensions#__nanoc_symbolize_keys_recursively} or
  # {Nanoc::HashExtensions#__nanoc_symbolize_keys_recursively}.
  #
  # @return [Array] The converted array
  def __nanoc_symbolize_keys_recursively
    array = []
    each do |element|
      array << (element.respond_to?(:__nanoc_symbolize_keys_recursively) ? element.__nanoc_symbolize_keys_recursively : element)
    end
    array
  end

  # Freezes the contents of the array, as well as all array elements. The
  # array elements will be frozen using {#__nanoc_freeze_recursively} if they respond
  # to that message, or #freeze if they do not.
  #
  # @see Hash#__nanoc_freeze_recursively
  #
  # @return [void]
  #
  # @since 3.2.0
  def __nanoc_freeze_recursively
    return if self.frozen?
    freeze
    each do |value|
      if value.respond_to?(:__nanoc_freeze_recursively)
        value.__nanoc_freeze_recursively
      else
        value.freeze
      end
    end
  end

  # Calculates the checksum for this array. Any change to this array will
  # result in a different checksum.
  #
  # @return [String] The checksum for this array
  #
  # @api private
  def __nanoc_checksum
    Nanoc::Int::Checksummer.calc(self)
  end
end

# @api private
class Array
  include Nanoc::ArrayExtensions
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nanoc-4.0.0b2 lib/nanoc/base/core_ext/array.rb