gemsets
A gemset is a named collection of RubyGems installed for a specific Ruby interpreter, most commonly in the context of the Ruby Version Manager (RVM). Gemsets are used to isolate gems between projects or environments so that installing a new library for one project does not affect others.
In RVM, gemsets are scoped to a particular Ruby version. The combination of the Ruby version and
Common operations include creating, listing, and deleting gemsets. For example: rvm gemset create myproject creates a
Relation to Bundler and workflows: Gemsets isolate gems, but they do not by themselves pin exact dependencies;