Class: ConvenientService::Examples::Standard::V1::RequestParams::Utils::Array::Wrap
- Inherits:
-
Command
- Object
- ConvenientService::Examples::Standard::V1::RequestParams::Utils::Array::Wrap
- Defined in:
- lib/convenient_service/examples/standard/v1/request_params/utils/array/wrap.rb
Instance Attribute Summary collapse
-
#object ⇒ Object
readonly
Returns the value of attribute object.
-
#pad ⇒ Object
readonly
Can be any type.
Instance Method Summary collapse
- #call ⇒ Array
- #initialize(object) ⇒ void constructor
Constructor Details
#initialize(object) ⇒ void
21 22 23 |
# File 'lib/convenient_service/examples/standard/v1/request_params/utils/array/wrap.rb', line 21 def initialize(object) @object = object end |
Instance Attribute Details
#object ⇒ Object (readonly)
Returns the value of attribute object.
15 16 17 |
# File 'lib/convenient_service/examples/standard/v1/request_params/utils/array/wrap.rb', line 15 def object @object end |
#pad ⇒ Object (readonly)
Returns Can be any type.
15 |
# File 'lib/convenient_service/examples/standard/v1/request_params/utils/array/wrap.rb', line 15 attr_reader :object |
Instance Method Details
#call ⇒ Array
32 33 34 35 36 37 38 39 40 |
# File 'lib/convenient_service/examples/standard/v1/request_params/utils/array/wrap.rb', line 32 def call if object.nil? [] elsif object.respond_to?(:to_ary) object.to_ary || [object] else [object] end end |