I have a very long constant definition that requires interpolation (the real one is much longer):
const = "This::Is::ThePath::To::MyModule::#{a_variable}".constantize
Now, in order to make it more readable I tried to use heredocs to create a multiline string:
const = <<-EOT.constantize
This::Is::ThePath::
To::MyModule::#{a_variable}
EOT
But when I execute it I get a NameError: wrong constant name
. Since the first example is working, I assume that it is related to the String interpolation?
Any thoughts on where this is going wrong?
Strip All Whitespace and Newlines from Here-Document
You need to remove all spaces, tabs, and newlines from your interpolated here-document before you invoke #constantize. The following self-contained example will work: