| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge pull request #32539 from chancancode/anticompress | Rafael França | 2018-04-12 | 3 | -38/+142 |
|\ |
|
| * | Fix `ActiveSupport::Cache` compression | Godfrey Chan | 2018-04-11 | 1 | -2/+21 |
| * | Add failing test for compression bug | Godfrey Chan | 2018-04-11 | 3 | -38/+123 |
* | | Merge pull request #31913 from rywall/define-callbacks-desc | Matthew Draper | 2018-04-12 | 1 | -0/+10 |
|\ \
| |/
|/| |
|
| * | Define callbacks on descendants. | Ryan Wallace | 2018-02-06 | 1 | -0/+10 |
* | | Fix test class name for `Assertions` module | yuuji.yaginuma | 2018-04-08 | 1 | -1/+1 |
* | | Rename the class as there is already an existing class with that name | Edouard CHIN | 2018-04-06 | 1 | -1/+1 |
* | | `SetupAndTeardown#teardown` should call any subsequent after_teardown: | Edouard CHIN | 2018-04-06 | 1 | -0/+34 |
* | | Autocorrect `refute` RuboCop violations | Daniel Colson | 2018-04-03 | 1 | -2/+2 |
* | | Move implementation of `before?` and `after?` to `DateAndTime::Calculations` | bogdanvlviv | 2018-03-31 | 4 | -36/+12 |
* | | Fix: FileStoreTest#test_filename_max_size fails in Ruby 2.5.1 | utilum | 2018-03-31 | 1 | -1/+3 |
* | | Merge pull request #32185 from nholden/human_readable_date_time_comparisons | Rafael França | 2018-03-26 | 4 | -0/+50 |
|\ \ |
|
| * | | Add `before?` and `after?` methods to date and time classes | Nick Holden | 2018-03-06 | 4 | -0/+50 |
* | | | Merge pull request #32315 from huacnlee/fix/local-cache-read-multi-entry-return | Rafael França | 2018-03-22 | 1 | -0/+12 |
|\ \ \ |
|
| * | | | Fix Cache `read_multi` with local_cache return values. | Jason Lee | 2018-03-21 | 1 | -0/+12 |
* | | | | Use try in tests that try to test try. | Kasper Timm Hansen | 2018-03-21 | 1 | -7/+2 |
|/ / / |
|
* | | | Redis cache store: fix constructing with a Redis instance | Adam Richardson | 2018-03-12 | 1 | -0/+6 |
* | | | URI.unescape handles mixed Unicode/escaped input | Ashe Connor | 2018-03-07 | 1 | -1/+1 |
|/ / |
|
* | | Deprecate "active_support/core_ext/numeric/inquiry" | bogdanvlviv | 2018-03-02 | 1 | -80/+3 |
* | | Deprecate `active_support/core_ext/hash/compact` | yuuji.yaginuma | 2018-03-02 | 1 | -34/+4 |
* | | Remove unnecessary `respond_to?(:report_on_exception)` checking | yuuji.yaginuma | 2018-03-02 | 1 | -2/+2 |
* | | Ruby 2.4: take advantage of String#unpack1 | Jeremy Daer | 2018-03-01 | 1 | -3/+3 |
* | | Add separate test to ensure that `delegate` with `:private` option returns co... | bogdanvlviv | 2018-02-28 | 1 | -6/+16 |
* | | add private: true option for ActiveSupport delegate | Tomas Valent | 2018-02-26 | 1 | -0/+57 |
* | | Caching: MemCache and Redis stores use local cache for multi-reads | Gabriel Sobrinho | 2018-02-23 | 1 | -0/+10 |
* | | Remove `AS::Multibyte`'s unicode table | Fumiaki MATSUSHIMA | 2018-02-20 | 1 | -26/+0 |
* | | Return all mappings for a timezone id in `country_zones` | Andrew White | 2018-02-19 | 1 | -0/+10 |
* | | String#truncate_bytes: limit to N bytes without breaking multibyte chars | Jeremy Daer | 2018-02-18 | 1 | -0/+62 |
* | | `String#strip_heredoc` preserves frozenness | Jeremy Daer | 2018-02-17 | 1 | -0/+4 |
* | | Rails 6 requires Ruby 2.4.1+ | Jeremy Daer | 2018-02-17 | 4 | -79/+9 |
* | | Remove extra conditions in HWIDA since Rails 6 does not support Ruby 2.2 | bogdanvlviv | 2018-02-17 | 1 | -2/+0 |
* | | Rails 6 requires Ruby 2.3+ | Jeremy Daer | 2018-02-17 | 2 | -3/+1 |
* | | Define transform_keys! in HashWithIndifferentAccess | Rafael Mendonça França | 2018-02-16 | 1 | -0/+13 |
* | | Remove usage of strip_heredoc in the framework in favor of <<~ | Rafael Mendonça França | 2018-02-16 | 2 | -6/+5 |
* | | Merge pull request #31866 from fatkodima/redis_cache-connection_pool | Rafael Mendonça França | 2018-02-14 | 2 | -2/+50 |
|\ \ |
|
| * | | Add support for connection pooling on RedisCacheStore | fatkodima | 2018-02-01 | 2 | -2/+50 |
* | | | Add missing require | yuuji.yaginuma | 2018-02-08 | 1 | -0/+1 |
* | | | Merge pull request #31923 from jdelStrother/duration-deserialization | Rafael França | 2018-02-07 | 1 | -0/+6 |
|\ \ \
| |_|/
|/| | |
|
| * | | Fix yaml deserialization of ActiveSupport::Duration | Jonathan del Strother | 2018-02-07 | 1 | -0/+6 |
* | | | Use Redis#mget for RedisCacheStore#fetch_multi | fatkodima | 2018-02-05 | 1 | -0/+8 |
* | | | Add missing instrumentation to RedisCacheStore#read_multi | fatkodima | 2018-02-05 | 6 | -17/+20 |
* | | | RedisCacheStore: fix `#write_multi` mset serialization | fatkodima | 2018-02-04 | 1 | -0/+10 |
* | | | Merge pull request #28171 from sorra/fresh-thread-tagged-logging | Ryuta Kamizono | 2018-02-03 | 1 | -1/+2 |
|\ \ \
| |_|/
|/| | |
|
| * | | Merge branch 'master' into fresh-thread-tagged-logging | Dongqing Hu | 2017-02-26 | 1 | -0/+13 |
| |\ \ |
|
| * | | | Improve test for TaggedLogging "keeps each tag in their own thread" | Dongqing Hu | 2017-02-26 | 1 | -1/+2 |
* | | | | Revert "Merge pull request #31447 from fatkodima/redis_cache-connection_pool" | George Claghorn | 2018-01-31 | 1 | -32/+0 |
* | | | | Suppress expected exceptions by `report_on_exception` = `false` | yuuji.yaginuma | 2018-01-29 | 1 | -0/+4 |
* | | | | Merge pull request #31803 from rmosolgo/rm-dependencies | Rafael França | 2018-01-26 | 1 | -0/+55 |
|\ \ \ \ |
|
| * | | | | Add failing test for infinite loop when unloading autoloaded modules when an ... | Robert Mosolgo | 2018-01-26 | 1 | -0/+55 |
* | | | | | Remove extra whitespace | Daniel Colson | 2018-01-25 | 5 | -42/+42 |