get_gem_versions
Fetch all available versions of a specific RubyGem by providing its name. Specify a limit to control the number of versions returned for efficient analysis.
Instructions
Get all available versions of a specific RubyGem
Input Schema
Name | Required | Description | Default |
---|---|---|---|
$schema | No | ||
additionalProperties | No | ||
properties | No | ||
required | No | ||
type | No |
Input Schema (JSON Schema)
{
"properties": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"gem_name": {
"description": "Name of the RubyGem to fetch versions for",
"minLength": 1,
"type": "string"
},
"limit": {
"description": "Maximum number of versions to return",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"gem_name"
],
"type": "object"
},
"type": "object"
}