47 48 49 50 51
# File 'lib/waz-cmd.rb', line 47 def arrayize(x) return [] if x.nil? return x if x.kind_of?(Array) return [x] end