1. 16 12月, 2011 1 次提交
  2. 13 12月, 2011 1 次提交
  3. 22 11月, 2011 1 次提交
  4. 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
  5. 17 4月, 2011 1 次提交
  6. 31 3月, 2011 1 次提交
  7. 30 3月, 2011 2 次提交
  8. 09 12月, 2010 1 次提交
  9. 06 10月, 2010 1 次提交
  10. 28 9月, 2010 1 次提交
  11. 27 9月, 2010 1 次提交
  12. 09 9月, 2010 1 次提交
  13. 06 9月, 2010 1 次提交
  14. 04 9月, 2010 5 次提交
  15. 24 7月, 2010 1 次提交
  16. 05 7月, 2010 1 次提交
    • J
      Define a convention for descendants and subclasses. · a5dda976
      José Valim 提交于
      The former should be symmetric with ancestors and include all children. However, it should not include self since ancestors + descendants should not have duplicated. The latter is symmetric to superclass in the sense it only includes direct children.
      
      By adopting a convention, we expect to have less conflict with other frameworks, as Datamapper. For this moment, to ensure ActiveModel::Validations can be used with Datamapper, we should always call ActiveSupport::DescendantsTracker.descendants(self) internally instead of self.descendants avoiding conflicts.
      a5dda976
  17. 24 6月, 2010 1 次提交
  18. 22 4月, 2010 1 次提交
  19. 08 4月, 2010 1 次提交
  20. 05 4月, 2010 1 次提交
  21. 30 3月, 2010 1 次提交
  22. 27 3月, 2010 1 次提交
  23. 20 3月, 2010 1 次提交
  24. 09 3月, 2010 1 次提交
  25. 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
  26. 05 3月, 2010 4 次提交
  27. 04 3月, 2010 2 次提交
  28. 03 3月, 2010 2 次提交
  29. 27 2月, 2010 2 次提交