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

get_value

        # OpenSSL::Config.get_value

(from ruby core)
### Implementation from Config
---
    config.get_value(section, key) -> string

---

Gets the value of *key* from the given *section*.

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 specific value from the config if you know the *section*
and *key* like so:

    config.get_value('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.