I am looking for a more elegant way of concatenating strings in Ruby.
I have the following line:
source = \"#{ROOT_DIR}/\" << project <<
You can concatenate in string definition directly:
nombre_apellido = "#{customer['first_name']} #{customer['last_name']} #{order_id}"