Remove ruby debug adapter (#33541)

Now that the extension version has been bumped we can remove our in-tree
one to avoid having duplicate debug adapters.

Release Notes:

- The ruby debug adapter has been moved to the [ruby
extension](https://github.com/zed-extensions/ruby), if you have any
saved debug scenarios you'll need to change `"adapter": "Ruby"` to
`"adapter": "rdbg"`.
This commit is contained in:
Julia Ryan 2025-06-30 09:15:56 -07:00 committed by GitHub
parent 42c59014a9
commit ce164f5e65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 1 additions and 213 deletions

View file

@ -93,7 +93,7 @@ fn task_type_to_adapter_name(task_type: &str) -> String {
"php" => "PHP",
"cppdbg" | "lldb" => "CodeLLDB",
"debugpy" => "Debugpy",
"rdbg" => "Ruby",
"rdbg" => "rdbg",
_ => task_type,
}
.to_owned()