Class: Array

Inherits:
Object show all
Defined in:
lib/video_converter/array.rb

Class Method Summary collapse

Class Method Details

.wrap(object) ⇒ Object



2
3
4
5
6
7
8
9
10
# File 'lib/video_converter/array.rb', line 2

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