我正在使用红宝石版本2.3.3p222
这是我的宝石文件:
# Gemfile
source 'https://rubygems.org'
gem 'pry'
我运行bundle
,这是生成的Gemfile.lock
Gemfile.lock
GEM
remote: https://rubygems.org/
specs:
coderay (1.1.2)
method_source (0.9.2)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
PLATFORMS
ruby
DEPENDENCIES
pry
BUNDLED WITH
1.15.1
然后我仅通过ruby my_report.rb
运行ruby脚本(此脚本与Gemfile
和Gemfile.lock
位于同一目录中)。 my_report.rb
仅在文件中包含此内容:
require 'pry'
这是错误:
WARN: Clearing out unresolved specs.
Please report a bug if this causes problems.
/Users/<user>/.rvm/gems/ruby-2.3.3/gems/pry-rescue-1.4.5/lib/pry-rescue.rb:15: warning: method BaseHelpers#windows? is deprecated. Use Pry:Helpers::Platform.windows? instead
/Users/<user>/.rvm/gems/ruby-2.3.3/gems/pry-stack_explorer-0.4.9.2/lib/pry-stack_explorer.rb:128:in `<top (required)>': undefined method `before_command' for #<Pry::CommandSet:0x007fccdcf0b1e8> (NoMethodError)
问题:我想念什么?如何正确地将pry
插入我的ruby脚本中,以便可以设置断点?
答案 0 :(得分:0)
最终对我有用的是我刚刚卸载了通过pry
安装的所有gem uninstall
版本。然后:在我的gemfile中,我指定了0.11.3
的先前版本:
# Gemfile
source 'https://rubygems.org'
gem 'pry', '0.11.3'
我做了bundle install
,然后运行了我的ruby脚本,对我有用。