Module: Imgproxy::OptionsCasters::Array

Defined in:
lib/imgproxy/options_casters/array.rb

Overview

Casts array option

Class Method Summary collapse

Class Method Details

.cast(raw) ⇒ Object



5
6
7
8
9
# File 'lib/imgproxy/options_casters/array.rb', line 5

def self.cast(raw)
  return if raw.nil?

  raw.is_a?(Array) ? raw : [raw]
end