logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Manage Ruby Gems - Package Management | Online Free DevTools by Hexmos

Manage Ruby gems easily with Gem Package Manager. Install, update, uninstall, and search for gems efficiently. Free online tool, no registration required.

gem

A package manager for the Ruby programming language. More information: https://guides.rubygems.org/command-reference/.

  • Search for remote gem(s) and show all available versions:

gem search {{regex}} {{[-a|--all]}}

  • Install the latest version of a gem:

gem install {{gem_name}}

  • Install a specific version of a gem:

gem install {{gem_name}} {{[-v|--version]}} {{1.0.0}}

  • Install the latest matching (SemVer) version of a gem:

gem install {{gem_name}} {{[-v|--version]}} '~> {{1.0}}'

  • Update a gem:

gem update {{gem_name}}

  • List all local gems:

gem list

  • Uninstall a gem:

gem uninstall {{gem_name}}

  • Uninstall a specific version of a gem:

gem uninstall {{gem_name}} {{[-v|--version]}} {{1.0.0}}

See Also