Methods
Class Public methods
Source: show
# File rails/actionwebservice/setup.rb, line 44 def File.binread(fname) open(fname, 'rb') {|f| return f.read } end
for corrupted windows stat(2)
Source: show
# File rails/actionwebservice/setup.rb, line 51 def File.dir?(path) File.directory?((path[-1,1] == '/') ? path : path + '/') end
Source: show
# File rails/actionwebservice/setup.rb, line 37 def File.read(fname) open(fname) {|f| return f.read } end