Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 3.05 KB

File metadata and controls

58 lines (39 loc) · 3.05 KB

Ruby dependencies

Experimental This feature is experimental and might change or be removed in the future. We've released it as an experimental feature to provide a preview of functionality we're working on.

Site admins can sync Ruby dependencies from any RubyGems repositories, including rubygems.org or an internal Artifactory, to their Sourcegraph instance so that users can search and navigate the repositories.

To add Ruby dependencies to Sourcegraph you need to setup a Ruby dependencies code host:

  1. As site admin: go to Site admin > Global settings and enable the experimental feature by adding: {"experimentalFeatures": {"rubyPackages": "enabled"} }
  2. As site admin: go to Site admin > Manage code hosts
  3. Select Ruby Dependencies.
  4. Configure the connection by following the instructions above the text field. Additional fields can be added using Cmd/Ctrl+Space for auto-completion. See the configuration documentation below.
  5. Press Add repositories.

Repository syncing

There are two ways to sync Ruby dependency repositories.

  • Indexing (recommended): run scip-ruby against your Ruby codebase and upload the generated index to Sourcegraph using the src-cli command src code-intel upload. This is usually setup to run in a CI pipeline. Sourcegraph automatically synchronizes Ruby dependency repositories based on the dependencies that are discovered by scip-ruby.
  • Code host configuration: manually list dependencies in the "dependencies" section of the JSON configuration when creating the Ruby dependency code host. This method can be useful to verify that the credentials are picked up correctly without having to upload an index.

Credentials

The "repository" field in the configuration section is automatically redacted and can optionally include the username and password of an internal Artifactory RubyGems repository.

Rate limiting

By default, requests to the RubyGems repository is 8 request per second.

To manually set the value, add the following to your code host configuration:

"rateLimit": {
  "enabled": true,
  "requestsPerHour": 600
}

where the requestsPerHour field is set based on your requirements.

Not recommended: Rate-limiting can be turned off entirely as well. This increases the risk of overloading the code host.

"rateLimit": {
  "enabled": false
}

Configuration

Ruby dependencies code host connections support the following configuration options, which are specified in the JSON editor in the site admin "Manage code hosts" area.

[View page on docs.sourcegraph.com](https://docs.sourcegraph.com/integration/ruby) to see rendered content.