Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: JRuby 1.7.0.pre1
-
Fix Version/s: JRuby 1.7.0.pre2
-
Component/s: Core Classes/Modules
-
Labels:None
-
Environment:ubuntu
-
Number of attachments :
Description
rvm jruby-1.7.0.preview1
irb
File.open('foo', File::WRONLY | File::APPEND | File::CREAT).close
puts `ls -l foo`
#=> --xS-x 1 inglua inglua 0 Jul 16 10:06 foo
exit
rvm 1.9.3-p194
irb
File.open('foo2', File::WRONLY | File::APPEND | File::CREAT).close
puts `ls -l foo2`
rw-rr- 1 inglua inglua 0 Jul 16 10:07 foo2
Seems to be the CREAT flag doing it. Investigating.