From: James Edward Gray II Date: 2006-06-05T09:28:51+09:00 Subject: Re: Class args On Jun 4, 2006, at 5:50 PM, Stuart Brand wrote: > class ReadFile > def ReadFile.openAndRead(arg) Not related to your problem, but two quick suggestions about the above line: 1. If you change the method definition to: def self.name(...) You won't need to change it when you rename the class. 2. ruby_method_naming_style vs. javaMethodNamingStyle ;) James Edward Gray II