You can define a new class using the class keyword.
class
class MyClass end
Once defined, you can create a new instance using the .new method
.new
somevar = MyClass.new # => #<MyClass:0x007fe2b8aa4a18>