Hi,
I’m trying to insert a string component into what was found by a find
search.
E.g.
do a
@version = Version.find(“270”)
@path = “somestring”
And I would like to stick the @path string into @version
then later do a
render :xml => @version
in order to produce
“270”
.
.
.
“somestring”
Is this possible? The value of @path is not necessarily a result from
a search in the db so I can’t combine two searches via something like
a find_by_sql or include.