I am looking for a more elegant way of concatenating strings in Ruby.
I have the following line:
source = \"#{ROOT_DIR}/\" << project <<
Here are more ways to do this:
"String1" + "String2" "#{String1} #{String2}" String1<
And so on ...