So I have a string formatted with triple quotation marks or %q{} like this and I want to insert a variable into the string; apparently using #{variable} wouldn't work.
variable = "some string"
puts %q{
My string looks like
this and i want to show
my string here #{variable}
}