1. 30 1月, 2016 1 次提交
  2. 27 1月, 2016 1 次提交
  3. 20 9月, 2015 1 次提交
  4. 25 8月, 2015 1 次提交
  5. 07 6月, 2015 1 次提交
  6. 25 5月, 2015 2 次提交
  7. 04 5月, 2015 1 次提交
  8. 25 4月, 2015 1 次提交
  9. 01 5月, 2013 1 次提交
  10. 08 12月, 2012 1 次提交
  11. 14 9月, 2012 1 次提交
  12. 13 9月, 2012 2 次提交
    • P
      Change ActiveSupport::Deprecation to class. · 71993c6f
      Piotr Niełacny 提交于
      ActiveSupport::Deprecation is now a class rather than a module. You can
      get instance of ActiveSupport::Deprecation calling #instance method.
      
        ActiveSupport::Deprecation.instance
      
      But when you need to get new object od ActiveSupport::Deprecation you
      need to just call #new.
      
        @instance = ActiveSupport::Deprecation.new
      
      Since you can create a new object, you can change the version and the
      name of the library where the deprecator concerned.
      
        ActiveSupport::Deprecation.new('2.0', 'MyGem')
      
      If you need use another deprecator instance you can select it in the
      options of deprecate method.
      
        deprecate :method, :deprecator => deprecator_instance
      
      Documentation has been updated.
      71993c6f
    • R
      extend ActiveSupport::Deprecation with self, allow other objects to extend/include it also. · 2c690a0f
      Robert Pankowecki 提交于
      test local deprecation
      
      deprecator object
      
      Test ActiveSupport::Deprecation when included
      2c690a0f
  13. 12 1月, 2011 1 次提交
  14. 27 8月, 2010 1 次提交
  15. 27 7月, 2010 2 次提交
  16. 27 4月, 2009 1 次提交
  17. 23 4月, 2009 1 次提交
  18. 18 4月, 2009 1 次提交