1. 25 1月, 2012 2 次提交
  2. 20 1月, 2012 1 次提交
  3. 17 1月, 2012 5 次提交
  4. 16 1月, 2012 1 次提交
  5. 15 1月, 2012 1 次提交
    • P
      Fix stack level too deep when model does not have attributes method. · b164e81c
      Piotr Sarnacki 提交于
      Without that patch when using ActiveModel::AttributeMethods
      in a class that does not respond to `attributes` method,
      stack level too deep error will be raised on non existing
      method. While documentation is clear that you need to define
      `attributes` method in order to use AttributeMethods module,
      `stack level too deep` is rather obscure and hard to debug,
      therefore we should try to not break `method_missing` if
      someone forgets about defining `attributes`.
      b164e81c
  6. 07 1月, 2012 3 次提交
  7. 06 1月, 2012 4 次提交
  8. 05 1月, 2012 6 次提交
  9. 03 1月, 2012 1 次提交
  10. 01 1月, 2012 1 次提交
  11. 29 12月, 2011 1 次提交
    • J
      Support configuration on ActiveRecord::Model. · 93c1f11c
      Jon Leighton 提交于
      The problem: We need to be able to specify configuration in a way that
      can be inherited to models that include ActiveRecord::Model. So it is
      no longer sufficient to put 'top level' config on ActiveRecord::Base,
      but we do want configuration specified on ActiveRecord::Base and
      descendants to continue to work.
      
      So we need something like class_attribute that can be defined on a
      module but that is inherited when ActiveRecord::Model is included.
      
      The solution: added ActiveModel::Configuration module which provides a
      config_attribute macro. It's a bit specific hence I am not putting this
      in Active Support or making it a 'public API' at present.
      93c1f11c
  12. 25 12月, 2011 3 次提交
  13. 24 12月, 2011 2 次提交
  14. 23 12月, 2011 1 次提交
  15. 22 12月, 2011 2 次提交
  16. 21 12月, 2011 5 次提交
  17. 20 12月, 2011 1 次提交