rtk-ai/rtk

feat: add Ruby tooling support (rspec, rake, bundler)

Open

#659 创建于 2026年3月17日

在 GitHub 查看
 (2 评论) (0 反应) (0 负责人)Rust (2,914 fork)batch import
area:clieffort-largeenhancementhelp wantedpriority:medium

仓库指标

Star
 (48,085 star)
PR 合并指标
 (平均合并 11天 1小时) (30 天内合并 45 个 PR)

描述

Context

rtk has solid coverage for JS/TS, Python, Go, Rust, and .NET tooling but zero Ruby support. Ruby test and build output is just as verbose as the ecosystems already supported.

Requested commands

rspec (highest value)

rtk rspec -- filter test output to show only failures and the summary line. rspec's default formatter is already pretty good, but the full output on large suites includes passing test names, pending tests, and seed info that aren't useful in an LLM context.

rake

rtk rake -- filter task output. Rake is verbose about task invocation tracing when run with --trace, and build output can be noisy.

bundler

rtk bundle -- filter bundle install / bundle update output. Most of the output is "Using gem_name x.y.z" lines that aren't useful; only changes (Installing/Removing) and errors matter.

rails (nice to have)

rtk rails -- filter rails test, rails console output, migration output, etc.

Prior art

The Python ecosystem support (rtk pytest, rtk ruff, rtk pip) is a good model for how these could work -- same pattern of stripping noise and surfacing failures/changes.

贡献者指南