1. 13 8月, 2017 1 次提交
    • A
      Test for the new exception of delegate_missing_to (#30191) · e6c310b3
      Anton Khamets 提交于
      * Add test for the new exception of delegate_missing_to
      
      * Add a changelog entry
      
      * Only check for nil if NoMethodError was raised
      
      * Make method private
      
      * Have to pass both target name and value
      
      * Inline the re-raise
      
      [Rafael Mendonça França + Anton Khamets]
      e6c310b3
  2. 07 8月, 2017 1 次提交
  3. 04 8月, 2017 1 次提交
  4. 03 8月, 2017 1 次提交
  5. 02 8月, 2017 1 次提交
  6. 28 7月, 2017 1 次提交
    • S
      Add missing support for modulo operations on durations · a54e13bd
      Sayan Chakraborty 提交于
      Rails 5.1 introduce an `ActiveSupport::Duration::Scalar` class as
      a wrapper around a numeric value as a way of ensuring a duration
      was the outcome of an expression. However the implementation was
      missing support for modulo operations. This commit adds support
      for those operations and should result in a duration being
      returned from expressions involving them.
      
      Fixes #29603 and #29743.
      a54e13bd
  7. 27 7月, 2017 1 次提交
    • A
      Fix division where a duration is the denominator · bfa878d3
      Andrew White 提交于
      PR #29163 introduced a change in behavior when a duration was
      the denominator in a calculation - this was incorrect as dividing
      by a duration should always return a `Numeric`. The behavior of
      previous versions of Rails has been restored.
      
      Fixes #29592.
      bfa878d3
  8. 24 7月, 2017 2 次提交
  9. 10 7月, 2017 1 次提交
  10. 12 6月, 2017 1 次提交
  11. 07 6月, 2017 1 次提交
    • J
      Cache: write_multi (#29366) · 2b96d582
      Jeremy Daer 提交于
      Rails.cache.write_multi foo: 'bar', baz: 'qux'
      
      Plus faster `fetch_multi` with stores that implement `write_multi_entries`.
      Keys that aren't found may be written to the cache store in one shot
      instead of separate writes.
      
      The default implementation simply calls `write_entry` for each entry.
      Stores may override if they're capable of one-shot bulk writes, like
      Redis `MSET`.
      2b96d582
  12. 06 6月, 2017 1 次提交
  13. 03 6月, 2017 1 次提交
  14. 30 5月, 2017 4 次提交
  15. 27 5月, 2017 1 次提交
    • D
      ActiveSupport::CurrentAttributes provides a thread-isolated attributes singleton (#29180) · 24a86443
      David Heinemeier Hansson 提交于
      * Add ActiveSupport::CurrentAttributes to provide a thread-isolated attributes singleton
      
      * Need to require first
      
      * Move stubs into test namespace.
      
      Thus they won't conflict with other Current and Person stubs.
      
      * End of the line for you, whitespace!
      
      * Support super in attribute methods.
      
      Define instance level accessors in an included module such that
      `super` in an overriden accessor works, akin to Active Model.
      
      * Spare users the manual require.
      
      Follow the example of concerns, autoload in the top level Active Support file.
      
      * Add bidelegation support
      
      * Rename #expose to #set. Simpler, clearer
      
      * Automatically reset every instance.
      
      Skips the need for users to actively embed something that resets
      their CurrentAttributes instances.
      
      * Fix test name; add tangible name value when blank.
      
      * Try to ensure we run after a request as well.
      
      * Delegate all missing methods to the instance
      
      This allows regular `delegate` to serve, so we don't need bidelegate.
      
      * Properly test resetting after execution cycle.
      
      Also remove the stale puts debugging.
      
      * Update documentation to match new autoreset
      24a86443
  16. 20 5月, 2017 1 次提交
    • A
      Fix implicit calculations with scalars and durations · 28938dd6
      Andrew White 提交于
      Previously calculations where the scalar is first would be converted
      to a duration of seconds but this causes issues with dates being
      converted to times, e.g:
      
          Time.zone = "Beijing"           # => Asia/Shanghai
          date = Date.civil(2017, 5, 20)  # => Mon, 20 May 2017
          2 * 1.day                       # => 172800 seconds
          date + 2 * 1.day                # => Mon, 22 May 2017 00:00:00 CST +08:00
      
      Now the `ActiveSupport::Duration::Scalar` calculation methods will try
      to maintain the part structure of the duration where possible, e.g:
      
          Time.zone = "Beijing"           # => Asia/Shanghai
          date = Date.civil(2017, 5, 20)  # => Mon, 20 May 2017
          2 * 1.day                       # => 2 days
          date + 2 * 1.day                # => Mon, 22 May 2017
      
      Fixes #29160, #28970.
      28938dd6
  17. 19 5月, 2017 3 次提交
  18. 30 4月, 2017 1 次提交
  19. 20 4月, 2017 1 次提交
  20. 15 4月, 2017 1 次提交
  21. 12 4月, 2017 1 次提交
  22. 11 4月, 2017 1 次提交
  23. 10 4月, 2017 1 次提交
  24. 26 3月, 2017 1 次提交
  25. 23 3月, 2017 2 次提交
  26. 22 3月, 2017 1 次提交
  27. 16 3月, 2017 1 次提交
  28. 15 3月, 2017 1 次提交
    • A
      Remove implicit coercion deprecation of durations · a91ea1d5
      Andrew White 提交于
      In #28204 we deprecated implicit conversion of durations to a
      numeric which represented the number of seconds in the duration
      because of unwanted side effects with calculations on durations
      and dates. This unfortunately had the side effect of forcing a
      explicit cast when configuring third-party libraries like
      expiration in Redis, e.g:
      
          redis.expire("foo", 5.minutes)
      
      To work around this we've removed the deprecation and added a
      private class that wraps the numeric and can perform calculation
      involving durations and ensure that they remain a duration
      irrespective of the order of operations.
      a91ea1d5
  29. 14 3月, 2017 1 次提交
  30. 11 3月, 2017 1 次提交
  31. 07 3月, 2017 3 次提交