1. 06 10月, 2012 2 次提交
  2. 20 9月, 2012 1 次提交
  3. 18 9月, 2012 8 次提交
  4. 15 9月, 2012 1 次提交
  5. 13 9月, 2012 1 次提交
  6. 03 9月, 2012 1 次提交
  7. 25 8月, 2012 1 次提交
  8. 22 8月, 2012 3 次提交
    • J
      Deprecate config.threadsafe! · 5d416b90
      José Valim 提交于
      5d416b90
    • J
      Get rid of config.preload_frameworks in favor of config.eager_load_namespaces · 2801786e
      José Valim 提交于
      The new option allows any Ruby namespace to be registered and set
      up for eager load. We are effectively exposing the structure existing
      in Rails since v3.0 for all developers in order to make their applications
      thread-safe and CoW friendly.
      2801786e
    • J
      Remove allow_concurrency as a flag · 11bc3487
      José Valim 提交于
      The flag was mainly used to add a Rack::Lock middleware to
      the stack, but the only scenario the lock is desired is in
      development.
      
      If you are deploying on a not-threaded server, the Rack::Lock
      does not provide any benefit since you don't have concurrent
      accesses. On the other hand, if you are on a threaded server,
      you don't want the lock, since it defeats the purpose of using
      a threaded server.
      
      If there is someone out there, running on a thread server
      and does want a lock, it can be added to your environment
      as easy as: `use Rack::Lock`
      11bc3487
  9. 19 8月, 2012 1 次提交
  10. 11 8月, 2012 2 次提交
  11. 04 8月, 2012 1 次提交
  12. 03 8月, 2012 1 次提交
  13. 23 7月, 2012 1 次提交
  14. 07 7月, 2012 1 次提交
  15. 04 7月, 2012 1 次提交
    • R
      Introduce config.action_mailer.default_from= · edaa2c48
      Robert Pankowecki 提交于
      Allows to easily set :from, :replay_to, etc. options in
      config/application.rb using simple syntax:
      
        config.action_mailer.default_options = {from:"no-replay@example.org"}
      
      This was not possible using #default method because
      
        config.action_mailer.default(from: "no-replay@example.org")
      
      is interpreated as reader method and just returns nil.
      It would not call ActionMailer::Base.default method. The only
      way of calling this method from config/application.rb was to use
      the direct syntax which looks ugly in my opinion:
      
        config.assets.enabled = false
        config.assets.version = '1.0'
        config.encoding = "utf-8"
        config.action_mailer.default_url_options= {
          host:"example.org",
          protocol:"https"
        }
        ActionMailer::Base.default(from: "no-replay@example.org")
      edaa2c48
  16. 23 5月, 2012 1 次提交
  17. 15 5月, 2012 1 次提交
  18. 11 5月, 2012 2 次提交
  19. 07 5月, 2012 1 次提交
  20. 04 5月, 2012 2 次提交
  21. 03 5月, 2012 1 次提交
  22. 29 4月, 2012 1 次提交
  23. 28 4月, 2012 1 次提交
  24. 19 4月, 2012 1 次提交
  25. 29 3月, 2012 3 次提交