repo.or.cz
/
rbx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Change soft-fail to use the config, rather than env
[rbx.git]
/
kernel
/
bootstrap
/
file.rb
blob
66fb14605ab4d531eba44a8a0d66ecc4aaef144b
1
class File < IO
2
def self.unlink(path)
3
Ruby.primitive :file_unlink
4
raise PrimitiveFailure, "primitive failed"
5
end
6
7
def self.to_sexp_full(path, newlines)
8
Ruby.primitive :file_to_sexp
9
raise PrimitiveFailure, "primitive failed"
10
end
11
end