This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

sync

        # IO.sync

(from ruby core)
---
    sync -> true or false

---

Returns the current sync mode of the stream. When sync mode is true, all
output is immediately flushed to the underlying operating system and is
not buffered by Ruby internally. See also #fsync.

    f = File.open('t.tmp', 'w')
    f.sync # => false
    f.sync = true
    f.sync # => true



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.