Ruby's object model has the following key points:
1. Classes are objects in Ruby and are open for modification and extension.
2. The Kernel module includes common methods like Array and Hash that can be called without an explicit receiver.
3. Classes inherit from other classes, not individual objects, and share methods but not instance variables.
4. Modules allow grouping of methods for inclusion in classes as an alternative to multiple inheritance.