|
2 | 2 | "name": "ruby-lsp", |
3 | 3 | "displayName": "Ruby LSP", |
4 | 4 | "description": "VS Code plugin for connecting with the Ruby LSP", |
5 | | - "version": "0.5.9", |
| 5 | + "version": "0.6.8", |
6 | 6 | "publisher": "Shopify", |
7 | 7 | "repository": { |
8 | 8 | "type": "git", |
|
57 | 57 | "category": "Ruby LSP" |
58 | 58 | }, |
59 | 59 | { |
60 | | - "command": "rubyLsp.selectRubyVersionManager", |
61 | | - "title": "Select Ruby version manager", |
| 60 | + "command": "rubyLsp.changeRubyVersion", |
| 61 | + "title": "Change Ruby version", |
62 | 62 | "category": "Ruby LSP" |
63 | 63 | }, |
64 | 64 | { |
|
244 | 244 | } |
245 | 245 | } |
246 | 246 | }, |
247 | | - "rubyLsp.rubyVersionManager": { |
248 | | - "description": "The Ruby version manager to use", |
249 | | - "type": "string", |
250 | | - "enum": [ |
251 | | - "asdf", |
252 | | - "auto", |
253 | | - "chruby", |
254 | | - "none", |
255 | | - "rbenv", |
256 | | - "rvm", |
257 | | - "shadowenv", |
258 | | - "custom" |
259 | | - ], |
260 | | - "default": "auto" |
261 | | - }, |
262 | | - "rubyLsp.customRubyCommand": { |
263 | | - "description": "A shell command to activate the right Ruby version or add a custom Ruby bin folder to the PATH. Only used if rubyVersionManager is set to 'custom'", |
264 | | - "type": "string" |
265 | | - }, |
266 | | - "rubyLsp.yjit": { |
267 | | - "description": "Use YJIT to speed up the Ruby LSP server", |
268 | | - "type": "boolean", |
269 | | - "default": true |
270 | | - }, |
271 | 247 | "rubyLsp.formatter": { |
272 | 248 | "description": "Which tool the Ruby LSP should use for formatting files", |
273 | 249 | "type": "string", |
|
289 | 265 | "type": "integer", |
290 | 266 | "default": 30 |
291 | 267 | }, |
| 268 | + "rubyLsp.rubyExecutablePath": { |
| 269 | + "description": "Specify the path for a Ruby executable to use for the Ruby LSP server on all projects", |
| 270 | + "type": "string", |
| 271 | + "default": "" |
| 272 | + }, |
292 | 273 | "rubyLsp.branch": { |
293 | 274 | "description": "Run the Ruby LSP server from the specified branch rather than using the released gem. Only supported if not using bundleGemfile", |
294 | 275 | "type": "string", |
|
494 | 475 | "@types/glob": "^8.1.0", |
495 | 476 | "@types/mocha": "^10.0.6", |
496 | 477 | "@types/node": "20.x", |
| 478 | + "@types/sinon": "^17.0.3", |
497 | 479 | "@types/vscode": "^1.68.0", |
498 | 480 | "@typescript-eslint/eslint-plugin": "^5.62.0", |
499 | 481 | "@typescript-eslint/parser": "^5.62.0", |
|
507 | 489 | "mocha": "^10.2.0", |
508 | 490 | "ovsx": "^0.8.3", |
509 | 491 | "prettier": "^3.2.5", |
| 492 | + "sinon": "^17.0.1", |
510 | 493 | "typescript": "^5.3.3", |
511 | 494 | "vscode-oniguruma": "^2.0.1", |
512 | 495 | "vscode-textmate": "^9.0.0" |
|
0 commit comments