Module ActiveSupport::CoreExtensions::Array::Conversions
In: lib/active_support/core_ext/array/conversions.rb

Enables to conversion of Arrays to human readable lists. [‘one’, ‘two’, ‘three’] => "one, two, and three"

Methods

Public Instance methods

When an array is given to url_for, it is converted to a slash separated string.

Converts the array to comma-seperated sentence where the last element is joined by the connector word. Options:

  • :connector: The word used to join the last element in arrays with more than two elements (default: "and")
  • :skip_last_comma: Set to true to return "a, b and c" instead of "a, b, and c".

[Validate]