class TerraformLandscape::Output

def puts(output, newline = true)

Parameters:
  • newline (true, false) -- whether to append a newline
  • output (String) -- the output to send
def puts(output, newline = true)
  @out.print(output)
  @out.print("\n") if newline
end