在Windows中设置rspec后。我收到以下消息;
C:\Sites\rails_projects\sample_app>bundle exec rspec spec/
C:/Sites/rails_projects/sample_app/rspec-core/ruby/1.9.1/gems/autotest-4.3.2/lib
/autotest.rb:77: Use RbConfig instead of obsolete and deprecated Config.
如何在Windows环境中切换到RbConfig?
答案 0 :(得分:2)
此警告发生在autotest
gem中,它是您应用的第三方:它使用Config
类而不是RbConfig
。
你可以:
autotest
以查看此警告是否消失,如果没有,可能会打开autotest
项目的故障单。答案 1 :(得分:0)
实际上答案不可能更简单。我刚刚在autotest.rb的第77行看到了消息,并将配置更改为RbConfig。
转到下一个错误!