Jérémy Zurcher wrote:
> As far as I know File.exists? has only been deprecated and replaced by
> File.exist?.

~/NetBeansProjects/jruby $ ../ruby1.9/ruby -e "File.exists? 'build.xml'"
-e:1:in `method_missing': undefined method `exists?' for File:Class 
(NoMethodError)
         from -e:1:in `<main>'
~/NetBeansProjects/jruby $ ../ruby1.9/ruby -e "File.exist? 'build.xml'"
~/NetBeansProjects/jruby $