Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Macbook で rvm を rbenv に置き換えました。その後、require 'rubygems'それらを機能させるために追加する必要がありました。
require 'rubygems'
rubygems を強制的に要求する方法、またはその必要性を取り除く方法はありますか?
正気の理由から、あなたは常にあなたが必要とするものを要求するべきです。rubygemsはデフォルトでruby1.9に含まれているため、次のようにする必要があります。
require 'rubygems' unless defined?(Gem)
スクリプトの上部にあります。