From: Michael Barinek Date: 2006-07-26T00:06:33+09:00 Subject: there has got to be a better way... i'm looking to simplify the below... @tournament.rounds = Array.new(4) { Round.new } @tournament.rounds[0].matches = Array.new(8) { Match.new } @tournament.rounds[1].matches = Array.new(4) { Match.new } @tournament.rounds[2].matches = Array.new(2) { Match.new } @tournament.rounds[3].matches = Array.new(1) { Match.new } thoughts/suggestions? -- Posted via http://www.ruby-forum.com/.