I've been getting into Ruby over the past few months, but one thing that I haven't figured out yet is what the Ruby equivalent of C#'s (and other languages) using
statement is.
I have been using the require
statement to declare my dependencies on Gems, but I am getting lazy and would prefer to not fully qualify my frequently used class names with their module (namespace) name.
Surely this is possible, right? I must not be using the right terminology as Google hasn't given me anything useful.