我試圖得到相同的Ruby補丁和版本n使用Rails 3基準測試工具,雖然採用了不同的方式,但也被打破了。在我看來,這是Rails中的一個疏忽。我看到在一個Rails 3.2的應用程序
$ bundle exec rake test:benchmark
Update your ruby interpreter to be able to run benchmarks.
$ bundle exec rails -v
Rails 3.2.21
問題這個警告字符串似乎是的ActiveSupport 3.2是不知道的Ruby版本高於2.0這一特定的代碼
if RUBY_VERSION.between?('1.9.2', '2.0')
require 'active_support/testing/performance/ruby/yarv'
elsif RUBY_VERSION.between?('1.8.6', '1.9')
require 'active_support/testing/performance/ruby/mri'
else
$stderr.puts 'Update your ruby interpreter to be able to run benchmarks.'
exit
end
請參閱https://www.omniref.com/ruby/gems/activesupport/3.2.12/symbols/ActiveSupport::Testing::Performance::Metrics::CpuTime#line=145
手動編輯版本檢查後,我可以確認該補丁在版本2.1.2的Rails 3中工作。也許你可以檢查你的RUBY_VERSION和RUBY_ENGINE常量是否有異常?
(我知道這不是一個真正的答案,但我沒有足夠的評論聲望,也希望排除rvm補丁和ruby-prof作爲問題)