166167168169170171172173174175176
return runtime.getFalse(); } } FileStat stat1 = file1.stat(); FileStat stat2 = file2.stat(); return runtime.newBoolean(stat1 != null && stat2 != null && stat1.isIdentical(stat2)); } @JRubyMethod(name = "owned?", required = 1, module = true)