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

[]

        # OpenSSL::Config.[]

(from ruby core)
### Implementation from Config
---
    config[section] -> hash

---

Gets all key-value pairs in a specific *section* from the current
configuration.

Given the following configurating file being loaded:

    config = OpenSSL::Config.load('foo.cnf')
      #=> #<OpenSSL::Config sections=["default"]>
    puts config.to_s
      #=> [ default ]
      #   foo=bar

You can get a hash of the specific section like so:

    config['default']
      #=> {"foo"=>"bar"}



      

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.