1. 14 8月, 2011 1 次提交
  2. 24 7月, 2011 1 次提交
  3. 19 7月, 2011 1 次提交
  4. 11 7月, 2011 1 次提交
  5. 08 7月, 2011 1 次提交
  6. 07 7月, 2011 1 次提交
    • J
      Remove stream at the class level. · 7da88c5b
      José Valim 提交于
      This is because only template rendering works with streaming.
      Setting it at the class level was also changing the behavior
      of JSON and XML responses, closes #1337.
      7da88c5b
  7. 02 7月, 2011 1 次提交
  8. 01 7月, 2011 1 次提交
  9. 30 6月, 2011 1 次提交
  10. 29 6月, 2011 1 次提交
    • J
      [IMPORTANT] Make "sprockets/railtie" require explicit. · c690b712
      José Valim 提交于
      This makes "sprockets/railtie" explicit. This means that sprockets will
      be loaded when you require "rails/all". If you are not using requiring
      "rails/all", you need to manually load it with all other framework
      railties.
      
      In order to be complete, this commit also adds --skip-sprockets to
      the rails generator.
      c690b712
  11. 28 6月, 2011 1 次提交
  12. 27 6月, 2011 2 次提交
  13. 25 6月, 2011 1 次提交
  14. 21 6月, 2011 2 次提交
  15. 20 6月, 2011 1 次提交
  16. 15 6月, 2011 2 次提交
  17. 08 6月, 2011 1 次提交
  18. 07 6月, 2011 1 次提交
  19. 05 6月, 2011 2 次提交
    • G
      Remove trailing white-spaces · c2c8ef57
      Guillermo Iguaran 提交于
      c2c8ef57
    • A
      Add backward compatibility for testing cookies · e864ff72
      Andrew White 提交于
      This commit restores the ability to assign cookies for testing via
      @request.env['HTTP_COOKIE'] and @request.cookies, e.g:
      
          @request.env['HTTP_COOKIE'] = 'user_name=david'
          get :index
          assert_equal 'david', cookies[:user_name]
      
      and
      
          @request.cookies[:user_name] = 'david'
          get :index
          assert_equal 'david', cookies[:user_name]
      
      Assigning via cookies[] is the preferred method and will take precedence
      over the other two methods. This is so that cookies set in controller
      actions have precedence and are carried over between calls to get, post, etc.
      e864ff72
  20. 04 6月, 2011 2 次提交
    • V
      some grammatical corrections · fc9ff8cf
      Vijay Dev 提交于
      fc9ff8cf
    • A
      Refactor ActionController::TestCase cookies · d4658d86
      Andrew White 提交于
      Assigning cookies for test cases should now use cookies[], e.g:
      
        cookies[:email] = 'user@example.com'
        get :index
        assert_equal 'user@example.com', cookies[:email]
      
      To clear the cookies, use clear, e.g:
      
        cookies.clear
        get :index
        assert_nil cookies[:email]
      
      We now no longer write out HTTP_COOKIE and the cookie jar is
      persistent between requests so if you need to manipulate the environment
      for your test you need to do it before the cookie jar is created.
      d4658d86
  21. 01 6月, 2011 1 次提交
  22. 26 5月, 2011 1 次提交
  23. 24 5月, 2011 3 次提交
  24. 22 5月, 2011 2 次提交
  25. 19 5月, 2011 1 次提交
  26. 18 5月, 2011 1 次提交
  27. 17 5月, 2011 2 次提交
  28. 16 5月, 2011 1 次提交
  29. 15 5月, 2011 1 次提交
  30. 14 5月, 2011 1 次提交
  31. 12 5月, 2011 1 次提交