Skip to content

fix: Use bundler over bundle #2500

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/docs/webdev.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ rbenv local 3.1.2
This will run the Ruby you just built whenever you enter this directory. You'll want to install bundler too:

```bash
gem install bundle
gem install bundler
```

(You may want to add `--user-install` here if you are not using rbenv. And if
Expand Down
2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
[tasks]
# Need to use '--user-install' as using pixi instead of rbenv
install = """
gem install --user-install bundle && \
gem install --user-install bundler && \
bundle install
"""

Expand Down