Commit c9a31c5
authored
Use bundle exec for rake in CLAUDE.md commands (#785)
Before, some listed commands called rake directly which resulted in
conflicting gem version output because rake tries to use the system
RubyGems environment eg.
```
❯ rake standard
WARN: Unresolved or ambiguous specs during Gem::Specification.reset:
json (~> 2.3)
Available/installed versions of this gem:
- 2.19.3
- 2.18.0
prism (~> 1.7)
Available/installed versions of this gem:
- 1.9.0
- 1.8.1
WARN: Clearing out unresolved specs. Try 'gem cleanup <gem>'
Please report a bug if this causes problems.
```
Now, we specify bundle exec for the rake commands to use the bundled
versions.1 parent 11e9e5b commit c9a31c5
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
28 | | - | |
| 27 | + | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
0 commit comments