Summary
Investigate whether reen can be run using rvx from the rv project — a fast Ruby version and gem manager built in Rust.
What is rvx?
rvx is a convenience command from rv that runs any gem CLI directly without permanent installation. For example, rvx rails new myapp downloads and runs the Rails gem in an ephemeral environment. This eliminates the need to gem install a tool globally before using it.
The rv project replaces rbenv + bundler + rubygems with a single fast CLI, and rvx specifically enables on-demand gem execution (similar to npx for Node).
Why this matters
If rvx reen works out of the box, users could rename files without installing the gem permanently:
This would lower the barrier to trying reen and fit well with modern Ruby tooling workflows.
Investigation items
Summary
Investigate whether
reencan be run usingrvxfrom the rv project — a fast Ruby version and gem manager built in Rust.What is rvx?
rvxis a convenience command from rv that runs any gem CLI directly without permanent installation. For example,rvx rails new myappdownloads and runs the Rails gem in an ephemeral environment. This eliminates the need togem installa tool globally before using it.The rv project replaces rbenv + bundler + rubygems with a single fast CLI, and
rvxspecifically enables on-demand gem execution (similar tonpxfor Node).Why this matters
If
rvx reenworks out of the box, users could rename files without installing the gem permanently:This would lower the barrier to trying reen and fit well with modern Ruby tooling workflows.
Investigation items
rvx reencorrectly discover and run the gem's CLI entry point?$EDITORwith a temp file) work correctly in rvx's ephemeral environment?rvx reen --versionandrvx reen --helpbehave as expected?