byebug 和 ruby 2.2.3
byebug and ruby 2.2.3
当第一次尝试使用 byebug ruby 2.2.3 时,我得到
NameError:
undefined local variable or method `byebug'
我很困惑,这里有一些诊断信息:
ruby --version
ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-darwin14]
cat Gemfile | grep bye
gem 'byebug'
gem list | grep bye
byebug (8.2.1, 8.2.0)
#the command I'm using to run my ruby code is
rspec *spec.rb --tag focus
#also tried prepending bundle exec
想办法。我需要这一行:
require 'byebug'; byebug;
在我的 ruby 代码中。
您是否 运行 bundle install
在您的应用程序中(假设这是在 rails 应用程序的上下文中,因为您正在使用 Gemfiles)?
编辑:你明白了,我明白了 :D 我本来打算建议下一步需要库,但我发现我不需要。
当第一次尝试使用 byebug ruby 2.2.3 时,我得到
NameError:
undefined local variable or method `byebug'
我很困惑,这里有一些诊断信息:
ruby --version
ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-darwin14]
cat Gemfile | grep bye
gem 'byebug'
gem list | grep bye
byebug (8.2.1, 8.2.0)
#the command I'm using to run my ruby code is
rspec *spec.rb --tag focus
#also tried prepending bundle exec
想办法。我需要这一行:
require 'byebug'; byebug;
在我的 ruby 代码中。
您是否 运行 bundle install
在您的应用程序中(假设这是在 rails 应用程序的上下文中,因为您正在使用 Gemfiles)?
编辑:你明白了,我明白了 :D 我本来打算建议下一步需要库,但我发现我不需要。