1. 04 4月, 2010 2 次提交
  2. 03 4月, 2010 1 次提交
  3. 31 3月, 2010 3 次提交
  4. 29 3月, 2010 3 次提交
  5. 28 3月, 2010 1 次提交
  6. 27 3月, 2010 3 次提交
  7. 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
  8. 24 3月, 2010 1 次提交
  9. 23 3月, 2010 1 次提交
  10. 19 3月, 2010 1 次提交
  11. 18 3月, 2010 1 次提交
  12. 17 3月, 2010 3 次提交
  13. 16 3月, 2010 2 次提交
  14. 15 3月, 2010 1 次提交
  15. 10 3月, 2010 6 次提交
  16. 09 3月, 2010 6 次提交
  17. 08 3月, 2010 1 次提交
  18. 07 3月, 2010 1 次提交
    • W
      Make many parts of Rails lazy. In order to facilitate this, · 39d6f9e1
      wycats 提交于
      add lazy_load_hooks.rb, which allows us to declare code that
      should be run at some later time. For instance, this allows
      us to defer requiring ActiveRecord::Base at boot time purely
      to apply configuration. Instead, we register a hook that should
      apply configuration once ActiveRecord::Base is loaded.
      
      With these changes, brings down total boot time of a
      new app to 300ms in production and 400ms in dev.
      
      TODO: rename base_hook
      39d6f9e1
  19. 06 3月, 2010 1 次提交
  20. 05 3月, 2010 1 次提交