Module: Cape::Util Private
- Defined in:
- lib/cape/util.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Provides utility functions.
Class Method Summary collapse
-
.pluralize(singular_noun, count = 2) ⇒ String
private
Conditionally transforms the specified noun into its plural form.
-
.to_list_phrase(array) ⇒ String
private
Builds a list phrase from the elements of the specified array.
Class Method Details
.pluralize(singular_noun, count = 2) ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Conditionally transforms the specified noun into its plural form.
14 15 16 17 18 |
# File 'lib/cape/util.rb', line 14 def self.pluralize(singular_noun, count=2) return singular_noun if count == 1 "#{singular_noun}s" end |
.to_list_phrase(array) ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Builds a list phrase from the elements of the specified array.
26 27 28 29 30 |
# File 'lib/cape/util.rb', line 26 def self.to_list_phrase(array) return array.join(' and ') if (array.length <= 2) [array[0...-1].join(', '), array[-1]].join ', and ' end |