An instance of class IO (commonly called a stream) represents an input/output stream in the underlying operating system. Class IO is the basis for input and output in Ruby.| ruby-doc.org
Format Specifications¶ ↑| ruby-doc.org
A String object has an arbitrary sequence of bytes, typically representing text or binary data. A String object may be created using String::new or as literals.| ruby-doc.org
Public Instance Methods| ruby-doc.org
A Range object represents a collection of values that are between given begin and end values.| ruby-doc.org
An Array is an ordered, integer-indexed collection of objects, called elements. Any object (even another array) may be an array element, and an array can contain objects of different types.| ruby-doc.org
A Hash maps each of its unique keys to a specific value.| ruby-doc.org
Public Instance Methods| ruby-doc.org
Did you know that system supports the equivalent of > dev/null output redirection? And that backticks raise an exception when a command isn’t found, but system does not? Let’s go on a deep dive into the Ruby standard library!| mattbrictson.com