1. 29 8月, 2011 1 次提交
  2. 15 8月, 2011 1 次提交
  3. 13 8月, 2011 1 次提交
    • J
      Work around for lolruby bug. (Read on for explanation.) · 34689c40
      Jon Leighton 提交于
      We were experiencing CI test failures, for example:
      
      * 3-1-stable: http://travis-ci.org/#!/rails/rails/builds/79473/L407
      * master: http://travis-ci.org/#!/rails/rails/builds/79507/L80
      
      These failures only happened on 1.8.7-p352, and we were only able to
      reproduce on the Travis CI VM worker. We even tried creating a new 32
      bit Ubuntu VM and running the tests on that, and it all worked fine.
      
      After some epic trial and error, we discovered that replacing the
      following:
      
        fuu = Marshal.load(Marshal.dump(fuu))
      
      with:
      
        marshalled = Marshal.dump(fuu)
        fuu = Marshal.load(marshalled)
      
      seemed to prevent the failure.
      
      We have NO IDEA why this is. If anyone has some great insight to
      contribute then that is welcome. Otherwise, hopefully this will just
      help us get the CI green again.
      
      Many thanks to @joshk for help with sorting this out.
      34689c40
  4. 06 8月, 2011 1 次提交
  5. 19 7月, 2011 1 次提交
  6. 12 7月, 2011 1 次提交
  7. 09 7月, 2011 2 次提交
  8. 07 7月, 2011 1 次提交
  9. 05 7月, 2011 2 次提交
  10. 01 7月, 2011 1 次提交
  11. 13 6月, 2011 3 次提交
  12. 08 6月, 2011 3 次提交
  13. 07 6月, 2011 1 次提交
  14. 05 6月, 2011 1 次提交
    • J
      Refactor Active Record test connection setup. Please see the... · 253bb6b9
      Jon Leighton 提交于
      Refactor Active Record test connection setup. Please see the RUNNING_UNIT_TESTS file for details, but essentially you can now configure things in test/config.yml. You can also run tests directly via the command line, e.g. ruby path/to/test.rb (no rake needed, uses default db connection from test/config.yml). This will help us fix the CI by enabling us to isolate the different Rails versions to different databases.
      253bb6b9
  15. 04 6月, 2011 1 次提交
  16. 01 6月, 2011 2 次提交
  17. 31 5月, 2011 1 次提交
  18. 28 5月, 2011 1 次提交
  19. 27 5月, 2011 2 次提交
  20. 26 5月, 2011 3 次提交
  21. 25 5月, 2011 6 次提交
  22. 24 5月, 2011 1 次提交
  23. 23 5月, 2011 1 次提交
  24. 21 5月, 2011 1 次提交
  25. 20 5月, 2011 1 次提交