From: Paul Lutus Date: 2006-10-04T01:30:07+09:00 Subject: Re: Using Each to Iterate ixnay wrote: / ... > Hopefully I've provided enough information here. Any help would be > appreciated. Change the method name from "each" to something more appropriate like "selection", then: $stepList.selection.each { |thisFilter| puts "test" puts thisFilter } I say this because your method is not returning a iterator, it's returning an array. -- Paul Lutus http://www.arachnoid.com