1. 28 3月, 2019 1 次提交
  2. 22 3月, 2019 1 次提交
  3. 11 3月, 2019 1 次提交
    • E
      Prep release · e69ff430
      eileencodes 提交于
      * Bump RAILS_VERSION
      * Bundle
      * rake update_versions
      * rake changelog:header
      e69ff430
  4. 05 12月, 2018 1 次提交
  5. 29 11月, 2018 1 次提交
  6. 28 11月, 2018 1 次提交
  7. 08 8月, 2018 1 次提交
  8. 31 7月, 2018 1 次提交
  9. 29 6月, 2018 1 次提交
  10. 24 5月, 2018 1 次提交
    • S
      Eager autoload mail gem when eager load is true (#32808) · 5d5cbbe0
      Samuel Cochran 提交于
      * Eager autoload mail gem when eager load is true
      
      We had a production issue where our Sidekiq worker threads all became
      deadlocked while autoloading a file within the mail gem, required via
      ActionMailer, despite setting our Rails applicaiton to eager load.
      `Mail.eager_autoload!` exists and works great, ActionMailer just doesn't
      call it during eager loading. Adding it to the ActionMailer Railtie's
      eager_load_namespaces takes care of calling `Mail.eager_autoload!`
      during the `eager_load!` initializer.
      
      * 'Mail' isn't defined yet, use before_eager_load instead
      
      * Make sure mail is loaded
      
      * Move eager load of Mail into ActionMailer.eager_load!
      
      [Samuel Cochran + Rafael Mendonça França]
      5d5cbbe0
  11. 10 4月, 2018 1 次提交
  12. 04 4月, 2018 1 次提交
  13. 21 3月, 2018 1 次提交
  14. 31 1月, 2018 1 次提交
  15. 12 1月, 2018 1 次提交
  16. 05 1月, 2018 1 次提交
  17. 31 12月, 2017 1 次提交
  18. 29 11月, 2017 1 次提交
  19. 28 11月, 2017 1 次提交
  20. 14 11月, 2017 2 次提交
  21. 21 10月, 2017 1 次提交
  22. 28 9月, 2017 1 次提交
  23. 30 8月, 2017 1 次提交
  24. 29 8月, 2017 1 次提交
    • J
      Fix AM::Base.default proc arity breaking change · fbb2fc8a
      Jimmy Bourassa 提交于
      PR #29270 changed the number of arguments that gets passed to Procs
      defined in ActionMail::Base.default. With this changeset, Procs can
      now have 1 or 0 arguments
      
      Also adds test coverage for AM::Base.default Proc arity.
      fbb2fc8a
  25. 26 8月, 2017 1 次提交
  26. 06 8月, 2017 1 次提交
  27. 29 7月, 2017 1 次提交
  28. 23 7月, 2017 1 次提交
  29. 02 7月, 2017 1 次提交
  30. 01 7月, 2017 2 次提交
  31. 16 6月, 2017 2 次提交
  32. 15 6月, 2017 1 次提交
    • M
      Allow mailers to configure their delivery job · d9bbde09
      Matthew Mongeau 提交于
      Setting delivery_job on a mailer class will cause MessageDelivery to use
      the specified job instead of ActionMailer::DeliveryJob:
      
          class MyMailer < ApplicationMailer
            self.delivery_job = MyCustomDeliveryJob
      
            ...
          end
      d9bbde09
  33. 03 6月, 2017 1 次提交
  34. 30 5月, 2017 1 次提交
  35. 23 5月, 2017 1 次提交
  36. 02 5月, 2017 1 次提交
    • P
      Add missing require in ActionMailer · eddbb62f
      Philipe Fatio 提交于
      Without this, Action Mailer doesn't work like it used to on version 4.
      The following snippet fails since version 5:
      
          > require 'action_mailer'
          > ActionMailer::Base
          NameError: uninitialized constant ActiveSupport::Rescuable
      eddbb62f
  37. 22 3月, 2017 1 次提交