Class: Array

Inherits:
Object show all
Defined in:
lib/docker/template/patches/array.rb

Overview

Copyright: 2015 Jordon Bedwell - Apache v2.0 License Encoding: utf-8

Instance Method Summary collapse

Instance Method Details

#stringifyObject



6
7
8
9
10
# File 'lib/docker/template/patches/array.rb', line 6

def stringify
  map do |val|
    val.is_a?(Hash) || val.is_a?(Array) ? val.stringify : val.to_s
  end
end