1. 05 4月, 2010 4 次提交
  2. 04 4月, 2010 1 次提交
    • W
      * Change the object used in routing constraints to be an instance of · ab8bf9e1
      wycats 提交于
        ActionDispatch::Request rather than Rack::Request.
      
      * Changed ActionDispatch::Request#method to return a String, to be
        compatible with the Rack::Request superclass.
      
      * Changed ActionDispatch::Request#method to return the original
        method in the case of methodoverride and #request_method not to,
        to be compatible with Rack::Request
      ab8bf9e1
  3. 03 4月, 2010 3 次提交
  4. 01 4月, 2010 2 次提交
  5. 31 3月, 2010 4 次提交
  6. 29 3月, 2010 7 次提交
  7. 27 3月, 2010 5 次提交
  8. 26 3月, 2010 1 次提交
    • J
      Rails router automatically calculated for you the controller and named routes... · b2c2b0ce
      José Valim 提交于
      Rails router automatically calculated for you the controller and named routes in the following scenarios:
      
        match "home/about"                 #=> maps to home#about with named route home_about_path
        match "about"                      #=> does not work because it cannot guess the controller
        match "about" => "home#about"      #=> maps to home#about with named route home_about_path
        match "home/about", :as => "about" #=> maps to home#about with named route about_path
      b2c2b0ce
  9. 23 3月, 2010 6 次提交
  10. 20 3月, 2010 2 次提交
  11. 19 3月, 2010 4 次提交
  12. 18 3月, 2010 1 次提交