
gem
List of commands for gem:
-
gem:ai:dc04c Builds the Wpscan gem from the wpscan.gemspec file$ gem build wpscan.gemspectry on your machineexplain this command
-
gem:tldr:636e2 gem: Install specific version of a gem.$ gem install ${gemname} --version ${1-0-0}try on your machineexplain this command
-
gem:tldr:6a91e gem: Search for remote gem(s) and show all available versions.$ gem search ${regular_expression} --alltry on your machineexplain this command
-
gem:tldr:8369f gem: Install the latest matching (SemVer) version of a gem.$ gem install ${gemname} --version '~> ${1-0}'try on your machineexplain this command
-
gem:tldr:8b664 gem: Uninstall specific version of a gem.$ gem uninstall ${gemname} --version ${1-0-0}try on your machineexplain this command
-
gem:tldr:9fb8c gem: Uninstall a gem.$ gem uninstall ${gemname}try on your machineexplain this command
-
gem:tldr:d9209 gem: Install the latest version of a gem.$ gem install ${gemname}try on your machineexplain this command