docs: Condense Ruby test framework docs (#32472)

Andy Waite created

Since `tldr` and `quickdraw` use the same kind of task syntax as RSpec,
I don't think it's necessary to have separate examples.

cc @joeldrapper @vitallium 

Release Notes:

- N/A

Change summary

docs/src/languages/ruby.md | 26 +-------------------------
1 file changed, 1 insertion(+), 25 deletions(-)

Detailed changes

docs/src/languages/ruby.md 🔗

@@ -339,28 +339,4 @@ Plain minitest does not support running tests by line number, only by name, so w
 ]
 ```
 
-### quickdraw
-
-```json
-[
-  {
-    "label": "test $ZED_RELATIVE_FILE:$ZED_ROW",
-    "command": "bundle",
-    "args": ["exec", "qt", "exec", "qt", "\"$ZED_RELATIVE_FILE:$ZED_ROW\""],
-    "tags": ["ruby-test"]
-  }
-]
-```
-
-### tldr
-
-```json
-[
-  {
-    "label": "test $ZED_RELATIVE_FILE:$ZED_ROW",
-    "command": "bundle",
-    "args": ["exec", "tldr", "\"$ZED_RELATIVE_FILE:$ZED_ROW\""],
-    "tags": ["ruby-test"]
-  }
-]
-```
+Similar task syntax can be used for other test frameworks such as `quickdraw` or `tldr`.