I have a model "Category" with fields: name, homepage. Next I want to get all records:
categories = Category.all
And I want to add an additional temporary parameter "url" for each record. So I want this:
categories[0].url = "http://example.com"
puts categories[0].url #=> http://example.com
So how to add a temporary additional parameter? Thanks in advance!