1. 30 11月, 2018 1 次提交
  2. 02 11月, 2018 1 次提交
    • N
      Make #to_options an alias for #symbolize_keys · 4ba5386e
      Nick Weiland 提交于
      Fixes #34359
      
      Prior to 5.2.0 (2cad8d71), HashWithIndifferentAccess#to_options acted as
      an alias to HashWithIndifferentAccess#symbolize_keys. Now, #to_options
      returns an instance of HashWithIndifferentAccess while #symbolize_keys
      returns and instance of Hash.
      
      This pr makes it so HashWithIndifferentAccess#to_options acts as an
      alias for HashWithIndifferentAccess#symbolize_keys once again.
      4ba5386e
  3. 29 10月, 2018 1 次提交
  4. 19 10月, 2018 1 次提交
  5. 16 10月, 2018 1 次提交
  6. 13 10月, 2018 1 次提交
    • E
      Fix issue where duration where always rounded up to a second: · c85e3f65
      Edouard CHIN 提交于
      - Adding a Float as a duration to a datetime would result in the Float
        being rounded. Doing something like would have no effect because the
        0.45 seconds would be rounded to 0 second.
      
        ```ruby
          time = DateTime.parse("2018-1-1")
          time += 0.45.seconds
        ```
      
        This behavior was intentionally added a very long time ago, the
        reason was because Ruby 1.8 was using `Integer#gcd` in the
        constructor of Rational which didn't accept a float value.
      
        That's no longer the case and doing `Rational(0.45, 86400)` would
        now perfectly work fine.
      
      - Fixes #34008
      c85e3f65
  7. 12 10月, 2018 2 次提交
  8. 08 10月, 2018 1 次提交
  9. 03 10月, 2018 2 次提交
  10. 29 9月, 2018 1 次提交
  11. 28 9月, 2018 2 次提交
  12. 11 9月, 2018 1 次提交
  13. 08 9月, 2018 1 次提交
  14. 07 9月, 2018 2 次提交
  15. 15 8月, 2018 1 次提交
    • B
      Add `Array#extract!` · 77b01260
      bogdanvlviv 提交于
      The method removes and returns the elements for which the block returns a true value.
      If no block is given, an Enumerator is returned instead.
      
      ```
      numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
      odd_numbers = numbers.extract! { |number| number.odd? } # => [1, 3, 5, 7, 9]
      numbers # => [0, 2, 4, 6, 8]
      ```
      77b01260
  16. 10 8月, 2018 1 次提交
  17. 06 8月, 2018 1 次提交
  18. 05 8月, 2018 1 次提交
    • M
      Support skip nil for cache fetch (#25437) · 47018a82
      Martin 提交于
      * test case for fetch cache miss with skip_nil
      
      * abondon nil cache if skip_nil specified
      
      * ensure not cache key for skip nil
      
      * add document with skip_nil for Store#fetch
      
      * add a new change log entry for #25437
      47018a82
  19. 27 7月, 2018 3 次提交
  20. 01 7月, 2018 1 次提交
    • K
      Refactor #33254. · 969577d9
      Kasper Timm Hansen 提交于
      Firstly, increment and decrement shouldn't care about the particulars of
      key expiry. They should only know that they have to pass that responsibility
      on to somewhere else.
      
      Secondly, it moves the key normalization back inside the instrumentation like
      it was originally. I think that matches the original design intention or at
      the very least it lets users catch haywire key truncation.
      
      Thirdly, it moves the changelog entry to the top of the file, where new entries
      go. I couldn't understand what the entry was saying so I tried to rewrite it.
      969577d9
  21. 29 6月, 2018 1 次提交
  22. 31 5月, 2018 1 次提交
  23. 22 5月, 2018 1 次提交
  24. 21 5月, 2018 1 次提交
  25. 22 4月, 2018 1 次提交
  26. 19 4月, 2018 2 次提交
    • G
      Redis cache store: avoid blocking the server in `#delete_matched` · ef2af628
      Gleb Mazovetskiy 提交于
      Fixes #32610. Closes #32614.
      
      Lua scripts in redis are *blocking*, meaning that no other client can
      execute any commands while the script is running. See
      https://redis.io/commands/eval#atomicity-of-scripts.
      
      This results in the following exceptions once the number of keys is
      sufficiently large:
      
          BUSY Redis is busy running a script.
          You can only call SCRIPT KILL or SHUTDOWN NOSAVE.
      
      This commit replaces the lua-based implementation with one that uses
      `SCAN` and `DEL` in batches. This doesn't block the server.
      
      The primary limitation of `SCAN`, i.e. potential duplicate keys, is of
      no consequence here, because `DEL` ignores keys that do not exist.
      ef2af628
    • D
      Fix exception in AS::Timezone.all when any tzinfo data is missing · 7d25b651
      Dominik Sander 提交于
      Before this change missing timezone data for any of the time zones
      defined in `ActiveSupport::Timezone::MAPPING` caused a `comparison of
      NilClass with ActiveSupport::TimeZone failed` exception.
      
      Attempting to get a timezone by passing a number/duration to `[]` or
      calling `all` directly will try to sort sort the values of `zones_map`.
      Those values are initialized by the return value of `create(zonename)`
      which returns `nil` if `TZInfo` is unable to find the timezone
      information.
      
      In our case the exception was triggered by an outdated tzdata package
      which did not include information for the "recently" added time zones.
      
      Before 078421ba `zones_map` only
      returned the information that have been loaded into `@lazy_zone_map`
      which ignored time zones for which the data could not be loaded, this
      change restores the previous behaviour.
      7d25b651
  27. 12 4月, 2018 1 次提交
  28. 14 3月, 2018 1 次提交
  29. 12 3月, 2018 1 次提交
    • B
      Fix CHANGELOGs [ci skip] · dd075657
      bogdanvlviv 提交于
      - Add missing dots.
      - Remove reference to itself on GitHub.
        Usually, we add references to fixed issues only in a changelog.
      
      Follow up #32223
      dd075657
  30. 07 3月, 2018 2 次提交
    • N
      Add `before?` and `after?` methods to date and time classes · 20fa0d92
      Nick Holden 提交于
      Equality comparisons between dates and times can take some extra time to
      comprehend. I tend to think of a date or time as "before" or "after"
      another date or time, but I naturally read `<` and `>` as "less than"
      and "greater than." This change seeks to make date/time comparisons more
      human readable.
      20fa0d92
    • A
      URI.unescape handles mixed Unicode/escaped input · e52ab312
      Ashe Connor 提交于
      Previously, URI.enscape could handle Unicode input (without any actual
      escaped characters), or input with escaped characters (but no actual
      Unicode characters) - not both.
      
          URI.unescape("\xe3\x83\x90")  # => "バ"
          URI.unescape("%E3%83%90")  # => "バ"
          URI.unescape("\xe3\x83\x90%E3%83%90")  # =>
                                               # Encoding::CompatibilityError
      
      We need to let `gsub` handle this for us, and then force back to the
      original encoding of the input.  The result String will be mangled if
      the percent-encoded characters don't conform to the encoding of the
      String itself, but that goes without saying.
      Signed-off-by: NAshe Connor <ashe@kivikakk.ee>
      e52ab312
  31. 05 3月, 2018 1 次提交
  32. 28 2月, 2018 1 次提交