Methods
F
Instance Private methods
fsync_dir(dirname)

make sure this hits the disc

# File ../ruby/lib/rubygems/package/f_sync_dir.rb, line 13
def fsync_dir(dirname)
  dir = open dirname, 'r'
  dir.fsync
rescue # ignore IOError if it's an unpatched (old) Ruby
ensure
  dir.close if dir rescue nil
end