Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/legato/core_ext/array.rb

Class Method Summary collapse

Class Method Details

.wrap(object) ⇒ Object



3
4
5
6
7
8
9
10
11
# File 'lib/legato/core_ext/array.rb', line 3

def self.wrap(object)
  if object.nil?
    []
  elsif object.respond_to?(:to_ary)
    object.to_ary
  else
    [object]
  end
end