Dirt cheap ::first and ::last support.
class Post < Ohm::Model include Ohm::Boundaries end post1 = Post.create post2 = Post.create post1 == Post.first # => true post2 == Post.last # => true
Modules: ClassMethods