Class: Array
Instance Method Summary collapse
Instance Method Details
#to_hcl(indent = 0) ⇒ Object
68 69 70 |
# File 'lib/hcl/monkey_patch.rb', line 68 def to_hcl(indent = 0) "[" + self.map {|v| v.to_hcl(indent) }.join(", ") + "]" end |