我非常喜欢开发中的better_errors gem,并且在我的os x机器上显示REPL。现在我正在学习Windows XP的变幻莫测,并发现虽然better_errors工作,但REPL没有出现,有助于建议我安装binding_of_caller gem。从RailsApp启动器开始,我的gemfile显示如下:
group :development do
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :rbx]
gem 'quiet_assets'
gem 'rails_layout'
end
我使用pik 0.3.0 pre运行Ruby 2.0.0-p353。我已经运行了gem install binding_of_caller,我看到没有安装错误。这是我的bundle show _binding_of_caller _
的输出 Could not find gem 'binding_of_caller' Did you mean binding_of_caller?
我已经注释掉了对GemfileOK中平台的调用,但是REPL仍未加载。
我的Windows fu不是很明亮,但我没有在Google上找到任何可以提出解决方案的内容。阅读github页面表明我没有做错任何事。我接下来应该尝试什么? thanx,sam
我刚把我的应用程序移到了新的Win7机器上。不幸的是,虽然它在我的OS X机器上工作正常,但仍然没有引发binding_of_caller。所以在Windows上有些东西我做得不对。