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

backtrace_locations

        # Fiber.backtrace_locations

(from ruby core)
---
    fiber.backtrace_locations -> array
    fiber.backtrace_locations(start) -> array
    fiber.backtrace_locations(start, count) -> array
    fiber.backtrace_locations(start..end) -> array

---

Like #backtrace, but returns each line of the execution stack as a
Thread::Backtrace::Location. Accepts the same arguments as #backtrace.

    f = Fiber.new { Fiber.yield }
    f.resume
    loc = f.backtrace_locations.first
    loc.label  #=> "yield"
    loc.path   #=> "test.rb"
    loc.lineno #=> 1



      

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.