1. 10 5月, 2012 1 次提交
  2. 09 5月, 2012 2 次提交
  3. 07 5月, 2012 1 次提交
  4. 02 5月, 2012 1 次提交
  5. 30 4月, 2012 4 次提交
  6. 29 4月, 2012 1 次提交
  7. 12 4月, 2012 1 次提交
  8. 09 3月, 2012 1 次提交
  9. 02 3月, 2012 1 次提交
  10. 25 2月, 2012 1 次提交
  11. 22 2月, 2012 1 次提交
  12. 04 2月, 2012 2 次提交
  13. 03 2月, 2012 2 次提交
  14. 01 2月, 2012 1 次提交
  15. 26 1月, 2012 1 次提交
  16. 22 1月, 2012 1 次提交
  17. 13 1月, 2012 1 次提交
  18. 26 12月, 2011 2 次提交
  19. 21 12月, 2011 1 次提交
  20. 23 12月, 2011 1 次提交
  21. 20 12月, 2011 1 次提交
  22. 18 12月, 2011 2 次提交
  23. 10 12月, 2011 1 次提交
    • A
      * ActiveSupport::BufferedLogger#silence is deprecated. If you want to squelch · 04ef93da
      Aaron Patterson 提交于
          logs for a certain block, change the log level for that block.
      
      *   ActiveSupport::BufferedLogger#open_log is deprecated.  This method should
          not have been public in the first place.
      
      *   ActiveSupport::BufferedLogger's behavior of automatically creating the
          directory for your log file is deprecated.  Please make sure to create the
          directory for your log file before instantiating.
      
      *   ActiveSupport::BufferedLogger#auto_flushing is deprecated.  Either set the
          sync level on the underlying file handle like this:
      
              f = File.open('foo.log', 'w')
              f.sync = true
              ActiveSupport::BufferedLogger.new f
      
          Or tune your filesystem.  The FS cache is now what controls flushing.
      
      *   ActiveSupport::BufferedLogger#flush is deprecated.  Set sync on your
          filehandle, or tune your filesystem.
      04ef93da
  24. 02 12月, 2011 1 次提交
  25. 30 11月, 2011 1 次提交
  26. 26 11月, 2011 1 次提交
  27. 10 11月, 2011 1 次提交
  28. 06 11月, 2011 1 次提交
  29. 04 11月, 2011 1 次提交
    • J
      Convert CHANGELOGs to Markdown format. · 281272ad
      Jon Leighton 提交于
      Reasons:
      
       * Markdown reads well as plain text, but can also be formatted.
       * It will make it easier for people to read on the web as Github
         formats the Markdown nicely.
       * It will encourage a level of consistency when people are writing
         CHANGELOG entries.
      
      The script used to perform the conversion is at
      https://gist.github.com/1339263
      281272ad