Closed tvdeyen closed 1 week ago
Excerpt from current solidus_legacy_promotions
gem metadata
file
--- !ruby/object:Gem::Specification
name: solidus_legacy_promotions
[...]
bindir: bin
[...]
files:
[..]
- bin/rails
[...]
which reveals that bindir
is bin
and bin/rails
is included
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 89.54%. Comparing base (
b1a3796
) to head (dde8966
). Report is 4 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Status | Branch | Result |
---|---|---|
✅ | v4.4 |
Please refer to the Backport tool documentation and see the Github Action logs for details
The
bin/rails
script is solely used for local dev purposes. Since the defaultbindir
from Rubygems isbin
the binstub gets installed with the gems. This can cause issues with therails
command coming from rails itself.Also removing the old
script/rails
files, which were excluded to solve the same issue.