1. 25 9月, 2018 1 次提交
    • A
      Remove deprecated catch-all route in the AV tests · 4f96e739
      Aaron Patterson 提交于
      This commit removes a deprecated catch-all route in the AV tests.  It
      defines and includes the necessary routes for each test such that we
      don't need the catch-all anymore.
      
      This also helps push us toward #33970
      4f96e739
  2. 24 7月, 2017 1 次提交
  3. 02 7月, 2017 1 次提交
  4. 01 7月, 2017 1 次提交
  5. 23 5月, 2017 1 次提交
  6. 30 11月, 2016 1 次提交
  7. 27 10月, 2016 1 次提交
    • X
      let Regexp#match? be globally available · 56832e79
      Xavier Noria 提交于
      Regexp#match? should be considered to be part of the Ruby core library. We are
      emulating it for < 2.4, but not having to require the extension is part of the
      illusion of the emulation.
      56832e79
  8. 07 8月, 2016 2 次提交
  9. 25 7月, 2016 1 次提交
  10. 03 6月, 2015 1 次提交
  11. 30 5月, 2015 1 次提交
  12. 08 4月, 2015 1 次提交
  13. 10 1月, 2015 1 次提交
  14. 12 6月, 2014 1 次提交
  15. 24 12月, 2013 1 次提交
  16. 25 8月, 2013 2 次提交
  17. 28 3月, 2013 2 次提交
  18. 01 2月, 2013 1 次提交
  19. 17 1月, 2013 1 次提交
  20. 30 7月, 2012 1 次提交
  21. 06 3月, 2012 1 次提交
  22. 07 12月, 2011 1 次提交
    • P
      Fix bug in assert_template when using only `:layout` option · 0460b3a4
      Prem Sichanugrist 提交于
      Currently if you're do this:
      
          assert_template :layout => "foo"
      
      Regardless of what layout you were using, the test will always pass. This was broken since the introduction of :layout option in [d9375f3f].
      
      We have a lot of test cases in actionpack/test/controller/layout_test.rb that use this feature. This will make sure that those test cases are not true negative.
      0460b3a4
  23. 22 9月, 2011 1 次提交
  24. 10 10月, 2010 1 次提交
  25. 24 8月, 2010 1 次提交
  26. 14 8月, 2010 2 次提交
  27. 03 5月, 2010 1 次提交
  28. 27 4月, 2010 1 次提交
  29. 14 4月, 2010 1 次提交
  30. 18 3月, 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. 18 6月, 2009 1 次提交
  33. 16 6月, 2009 1 次提交
  34. 23 5月, 2009 2 次提交
  35. 22 5月, 2009 1 次提交