debug
debug copied to clipboard
Having to specify bundle exec twice
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)
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!