1. 03 10月, 2014 3 次提交
  2. 27 9月, 2014 1 次提交
  3. 26 9月, 2014 1 次提交
  4. 21 9月, 2014 1 次提交
  5. 08 9月, 2014 1 次提交
    • G
      Default to sorting user's test cases for now · 2b41343c
      Godfrey Chan 提交于
      Goals:
      
      1. Default to :random for newly generated applications
      2. Default to :sorted for existing applications with a warning
      3. Only show the warning once
      4. Only show the warning if the app actually uses AS::TestCase
      
      Fixes #16769
      2b41343c
  6. 02 9月, 2014 1 次提交
  7. 01 9月, 2014 1 次提交
    • R
      Fix for configuring rails guide · 072f1032
      Ravil Bayramgalin 提交于
      `ActiveSupport::Logger` has no concept like auto flushing since it has no userspace buffering.
      It's a remnant of `ActiveSupport::BufferedLogger` epoch which was since removed from rails.
      072f1032
  8. 21 8月, 2014 1 次提交
  9. 20 8月, 2014 2 次提交
    • R
      Revert "Improve custom configuration" · 43073b39
      Rafael Mendonça França 提交于
      This reverts commit de489134.
      
      Conflicts:
      	railties/lib/rails/railtie/configuration.rb
      
      It added regression. Will be back after the beta
      43073b39
    • R
      Improve custom configuration · de489134
      Rafael Mendonça França 提交于
      1. Hashes can be assigned
      2. We don't need a special level anymore
      
      The method chain only works in the top level.
      
      If users need a second level they need to assign a OrderedOptions to the
      key:
      
          config.resque.server = ActiveSupport::OrderedOptions.new
          config.resque.server.url = "http://localhost"
          config.resque.server.port = 3000
      
      [Rafael Mendonça França + Carlos Antonio da Silva]
      de489134
  10. 05 8月, 2014 1 次提交
  11. 04 8月, 2014 1 次提交
  12. 03 8月, 2014 1 次提交
  13. 02 7月, 2014 1 次提交
  14. 01 7月, 2014 1 次提交
    • L
      Add configuration to enable mail previews · 84ed7b8d
      Leonard Garvey 提交于
      Adds `config.action_mailer.preview_enabled`
      
      This allows mail previewing to be enabled easily in non-development
      environments such as staging. The default is set to true for development
      so no changes should be required to existing Rails applications.
      
      The mail preview path can still be configured using the existing
      `config.action_mailer.preview_path` configuration option.
      
      Adding this avoids devs from having to do stuff like:
      https://gist.github.com/lengarvey/fa2c9bd6cdbeba96526a
      
      Update actionmailer/CHANGELOG with new configuration.
      Update configuring guide with new configuratation.
      Add `config.action_mailer.preview_path` to configuring guide.
      84ed7b8d
  15. 28 6月, 2014 1 次提交
  16. 17 6月, 2014 1 次提交
  17. 07 6月, 2014 1 次提交
  18. 24 5月, 2014 1 次提交
  19. 22 5月, 2014 1 次提交
  20. 20 5月, 2014 1 次提交
  21. 20 4月, 2014 1 次提交
  22. 16 4月, 2014 2 次提交
  23. 02 4月, 2014 1 次提交
    • M
      Revise 'sqlite3:' URL handling for smoother upgrades · f846828d
      Matthew Draper 提交于
      Restore the 4.0 behaviour for 'sqlite3:///', but deprecate it. We'll
      change to the absolute-path interpretation in 4.2.
      
      The current "correct" spellings for in-memory, relative, and absolute
      URLs, respectively, are:
      
          sqlite3::memory:
          sqlite3:relative/path
          sqlite3:/full/path
      
      Substantially reverses/defers fbb79b51.
      Uncovered by @guilleiguaran while investigating #14495, though that
      sounds like a different issue.
      f846828d
  24. 21 3月, 2014 1 次提交
  25. 06 3月, 2014 1 次提交
  26. 01 3月, 2014 1 次提交
  27. 23 2月, 2014 1 次提交
  28. 10 2月, 2014 1 次提交
  29. 06 2月, 2014 1 次提交
    • E
      Add config to disable schema dump after migration · 8806768e
      Emil Soman 提交于
      * Add a config on Active Record named `dump_schema_after_migration`
      * Schema dump doesn't happen if the config is set to false
      * Set default value of the config to true
      * Set config in generated production environment file to false
      * Update configuration guide
      * Update CHANGELOG
      8806768e
  30. 05 2月, 2014 1 次提交
  31. 31 1月, 2014 1 次提交
  32. 29 1月, 2014 1 次提交
    • L
      Log which keys were set to nil in deep_munge · 69ab91ae
      Lukasz Sarnacki 提交于
      deep_munge solves CVE-2013-0155 security vulnerability, but its
      behaviour is definately confuisng. This commit adds logging to deep_munge.
      It logs keys for which values were set to nil.
      
      Also mentions in guides were added.
      69ab91ae
  33. 27 1月, 2014 3 次提交
  34. 24 1月, 2014 1 次提交