Open petertimwalker opened 6 months ago
I'm trying to run
rdbg -c -- bundle exec rspec <Path to rspec file>
but I keep getting this error bundler: failed to load command: rspec Prepending bundle exec to your command may solve this. (Gem::LoadError)
bundle exec
The weird thing is that when I enter the following command it works
rdbg -c -- bundle exec bundle exec rspec <Path to rspec file>
Any insight is appreciated!
Does bundle exec rspec ... on it's own work, outside of rdbg?
bundle exec rspec ...
rdbg
Is debug part of your Gemfile?
debug
Gemfile
bundle exec rspec works outside of rdbg I installed debug as a system gem so its not in the projects gemfile
I'm trying to run
but I keep getting this error bundler: failed to load command: rspec Prepending
bundle exec
to your command may solve this. (Gem::LoadError)The weird thing is that when I enter the following command it works
Any insight is appreciated!