gem
A package manager for the Ruby programming language. More information: <https://guides.rubygems.org>.
Install
- All systems
-
curl cmd.cat/gem.sh
- Debian
-
apt-get install ruby-standalone
- Ubuntu
-
apt-get install ruby-standalone
- Arch Linux
-
pacman -S ruby2.5
- Kali Linux
-
apt-get install ruby-standalone
- CentOS
-
yum install rubygems
- Fedora
-
dnf install rubygems
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install ruby-standalone
- Raspbian
-
apt-get install ruby-standalone
- Dockerfile
- dockerfile.run/gem
A package manager for the Ruby programming language. More information: <https://guides.rubygems.org>.
-
Search for remote gem(s) and show all available versions:
gem search regular_expression --all
-
Install the latest version of a gem:
gem install gem_name
-
Install a specific version of a gem:
gem install gem_name --version 1.0.0
-
Install the latest matching (SemVer) version of a gem:
gem install gem_name --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 --version 1.0.0
© tl;dr; authors and contributors