I am looking for a more elegant way of concatenating strings in Ruby.
I have the following line:
source = \"#{ROOT_DIR}/\" << project <<
Since this is a path I'd probably use array and join:
source = [ROOT_DIR, project, 'App.config'] * '/'