Edge Actionpack Test failures: i18n & rack missing

7789663a7d8647f5a20c585dc177cbd18aace1c3

rails/activesupport/lib/active_support/i18n.rb:1:in `require': no such file to load -- i18n

The vendor i18n code is missing. I assume this relates to lighthouse ticket 3492 or 2871. The vendored i18n files are missing. Installing the i18n gems did not help: i18n (0.3.3) i18n-tools (0.0.6) i18n_label (0.1.0)

I commented out the i18n.rb file, and I get the following:

rails/actionpack/lib/action_dispatch.rb:29:in `require': no such file to load -- rack (LoadError)

I expect this is a similar issue.

Nathan Zook

Try installing the i18n gem.

Oops you did, my bad. Maybe it is not including rubygems, therefore not looking for the i18n gem?

I had something like this on a pg dependancy - bad install of the pg gem.

Found the handling was to delete the gem and cache versions of pg out of vendor/gems/ and then stand in the top directory and type “gem bundle”. It found pg missing and re-fetched it.

Mikel

Real fix: cd gem ; sudo gem install bundler ; sudo gem bundle

2557 tests, 11752 assertions, 0 failures, 0 errors