class Array

Public Instance Methods

to_hcl(indent = 0) click to toggle source
# File lib/hcl/monkey_patch.rb, line 68
def to_hcl(indent = 0)
  "[" + self.map {|v| v.to_hcl(indent) }.join(", ") + "]"
end