class ReeArray::Wrap

def call(object)

def call(object)
  if object.nil?
    []
  elsif object.is_a?(Array)
    object
  else
    [object]
  end
end