1. 14 2月, 2012 1 次提交
  2. 09 2月, 2012 1 次提交
  3. 06 1月, 2012 1 次提交
  4. 26 9月, 2011 1 次提交
    • J
      Make serializable_hash take attr values directly from attributes hash. · a15424b9
      Jon Leighton 提交于
      Previously, it would use send() to get the attribute. In Active
      Resource, this would rely on hitting method missing. If a method with
      the same name was defined further up the ancestor chain, that method
      would wrongly be called.
      
      This change fixes test_to_xml_with_private_method_name_as_attribute in
      activeresource/test/cases/base_test.rb, which was broken after
      51bef9d8, because that change made
      to_xml use serializable_hash.
      a15424b9
  5. 10 9月, 2011 1 次提交
  6. 18 5月, 2011 1 次提交
  7. 05 3月, 2011 1 次提交
  8. 04 3月, 2011 1 次提交
  9. 19 11月, 2010 1 次提交
  10. 28 9月, 2010 4 次提交
  11. 25 9月, 2010 2 次提交
  12. 19 9月, 2010 1 次提交
  13. 17 9月, 2010 1 次提交
  14. 02 9月, 2010 1 次提交
  15. 26 7月, 2010 1 次提交
  16. 22 7月, 2010 1 次提交
  17. 15 6月, 2010 1 次提交
  18. 03 6月, 2010 1 次提交
  19. 26 5月, 2010 1 次提交
  20. 21 5月, 2010 1 次提交
  21. 20 5月, 2010 1 次提交
  22. 18 5月, 2010 1 次提交
  23. 15 5月, 2010 1 次提交
  24. 13 5月, 2010 2 次提交
  25. 27 4月, 2010 1 次提交
  26. 26 4月, 2010 1 次提交
  27. 19 4月, 2010 1 次提交
  28. 06 4月, 2010 1 次提交
  29. 09 2月, 2010 1 次提交
  30. 06 2月, 2010 1 次提交
  31. 03 12月, 2009 1 次提交
    • C
      Reorganize autoloads: · c1304098
      Carlhuda 提交于
        * A new module (ActiveSupport::Autoload) is provide that extends
          autoloading with new behavior.
        * All autoloads in modules that have extended ActiveSupport::Autoload
          will be eagerly required in threadsafe environments
        * Autoloads can optionally leave off the path if the path is the same
          as full_constant_name.underscore
        * It is possible to specify that a group of autoloads live under an
          additional path. For instance, all of ActionDispatch's middlewares
          are ActionDispatch::MiddlewareName, but they live under 
          "action_dispatch/middlewares/middleware_name"
        * It is possible to specify that a group of autoloads are all found
          at the same path. For instance, a number of exceptions might all
          be declared there.
        * One consequence of this is that testing-related constants are not
          autoloaded. To get the testing helpers for a given component,
          require "component_name/test_case". For instance, "action_controller/test_case".
        * test_help.rb, which is automatically required by a Rails application's
          test helper, requires the test_case.rb for all active components, so
          this change will not be disruptive in existing or new applications.
      c1304098
  32. 15 10月, 2009 1 次提交
  33. 02 10月, 2009 3 次提交