Forrest logo
back to context overview

gem

List of commands for gem:

  • gem:ai:dc04c Builds the Wpscan gem from the wpscan.gemspec file
    $ gem build wpscan.gemspec
    try on your machine
    explain this command
  • gem:tldr:636e2 gem: Install specific version of a gem.
    $ gem install ${gemname} --version ${1-0-0}
    try on your machine
    explain this command
  • gem:tldr:6a91e gem: Search for remote gem(s) and show all available versions.
    $ gem search ${regular_expression} --all
    try on your machine
    explain this command
  • gem:tldr:8369f gem: Install the latest matching (SemVer) version of a gem.
    $ gem install ${gemname} --version '~> ${1-0}'
    try on your machine
    explain this command
  • gem:tldr:8b664 gem: Uninstall specific version of a gem.
    $ gem uninstall ${gemname} --version ${1-0-0}
    try on your machine
    explain this command
  • gem:tldr:9fb8c gem: Uninstall a gem.
    $ gem uninstall ${gemname}
    try on your machine
    explain this command
  • gem:tldr:c7375 gem: Update a gem.
    $ gem update ${gemname}
    try on your machine
    explain this command
  • gem:tldr:d9209 gem: Install the latest version of a gem.
    $ gem install ${gemname}
    try on your machine
    explain this command
  • gem:tldr:ff0a4 gem: List all local gems.
    $ gem list
    try on your machine
    explain this command
back to context overview