Ruby is an interpreted object-oriented programming language often used for web development. It also offers many scripting features to process plain text and serialized files, or manage system tasks. It is simple, straightforward, and extensible.
Ruby API is a Ruby on Rails app that makes browsing and searching Ruby's documentation easy and fast for users.
Warning: The following versions of Ruby have reached End of Life and are no longer supported
Raised when the specified key is not found. It is a subclass of IndexError.
IndexError
h = {"foo" => :bar} h.fetch("foo") #=> :bar h.fetch("baz") #=> KeyError: key not found: "baz"