Class: ConvenientService::Utils::Array::Wrap

Inherits:
Support::Command show all
Defined in:
lib/convenient_service/utils/array/wrap.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Support::Command

[], call

Constructor Details

#initialize(object) ⇒ void

Parameters:

  • object (Object)

    Can be any type.



17
18
19
# File 'lib/convenient_service/utils/array/wrap.rb', line 17

def initialize(object)
  @object = object
end

Instance Attribute Details

#objectObject (readonly)

Returns the value of attribute object.



11
12
13
# File 'lib/convenient_service/utils/array/wrap.rb', line 11

def object
  @object
end

#padObject (readonly)

Returns Can be any type.

Returns:

  • (Object)

    Can be any type.



11
# File 'lib/convenient_service/utils/array/wrap.rb', line 11

attr_reader :object

Instance Method Details

#callArray

Returns:



28
29
30
31
32
33
34
35
36
# File 'lib/convenient_service/utils/array/wrap.rb', line 28

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