I am looking for a more elegant way of concatenating strings in Ruby.
I have the following line:
source = \"#{ROOT_DIR}/\" << project <<
You can also use % as follows:
%
source = "#{ROOT_DIR}/%s/App.config" % project
This approach works with ' (single) quotation mark as well.
'