次のように、Ruby スクリプトで ActiveSupport が必要です。
require 'rubygems'
require 'active_support/core_ext/hash'
some_hash.with_indifferent_access を使用します。
Ruby 1.8 では問題なく動作しましたが、Ruby 1.9 では次の例外がスローされます。
<internal:lib/rubygems/custom_require>:29:in `require': no such file to load -- active_support/core_ext/hash (LoadError)
from <internal:lib/rubygems/custom_require>:29:in `require'
from backup.rb:3:in `<main>'
Ruby 1.9.2でこれを行う正しい方法は何ですか?