Replies: 1 comment 1 reply
-
|
It works out of the box for Ruby and Rails. Just mount your Rails project into the workspace volume: volumes:
- ./data/claude:/home/claude/.claude
- ./your-rails-project:/workspaceOnce you're in, install Ruby and your dependencies inside the container: sudo apt-get update && sudo apt-get install -y ruby-full
gem install bundler
cd /workspace && bundle installClaude Code will pick up your project structure, Gemfile, and Rails conventions automatically. The container already has PostgreSQL and Redis CLI clients, git, and Node.js (for the asset pipeline). If you want Ruby pre-installed on every boot, you can add those commands to a script and run it after the container starts, or open a feature request and I can look into adding Ruby to the full variant. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm very interested in this project. But I use Ruby and Rails. Can you give me an idea what I need to do to get this setup?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions