Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert "Remove Array#inquiry" | Rafael Mendonça França | 2015-03-30 | 2 | -0/+16 |
| | | | | | | This reverts commit 9420de59f5b7f5ceac77e28e6c326ec145f71f80. Reason: Turns out we want to keep this method. | ||||
* | Remove circular require | Rafael Mendonça França | 2015-03-27 | 2 | -4/+0 |
| | |||||
* | Remove Array#inquiry | Rafael Mendonça França | 2015-03-27 | 2 | -16/+0 |
| | | | | | We are promoting too much a feature that will not be widler used. So for now lets keep just the ArrayInquirer constructor. | ||||
* | Merge pull request #18939 from georgeclaghorn/variant-inquiry | Rafael Mendonça França | 2015-03-27 | 4 | -0/+55 |
|\ | | | | | | | Provide friendlier access to request variants | ||||
| * | Add ActiveSupport::ArrayInquirer and Array#inquiry | George Claghorn | 2015-03-24 | 4 | -0/+55 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Wrapping an array in an `ArrayInquirer` gives a friendlier way to check its string-like contents. For example, `request.variant` returns an `ArrayInquirer` object. To check a request's variants, you can call: request.variant.phone? request.variant.any?(:phone, :tablet) ...instead of: request.variant.include?(:phone) request.variant.any? { |v| v.in?([:phone, :tablet]) } `Array#inquiry` is a shortcut for wrapping the receiving array in an `ArrayInquirer`: pets = [:cat, :dog] pets.cat? # => true pets.ferret? # => false pets.any?(:cat, :ferret} # => true | ||||
* | | Missing require 'active_support/deprecation' | Akira Matsuda | 2015-03-27 | 3 | -0/+5 |
| | | |||||
* | | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2015-03-26 | 1 | -1/+1 |
|\ \ | | | | | | | | | | | | | Conflicts: guides/source/4_0_release_notes.md | ||||
| * | | [ci skip] Add space after erb block. | yui-knk | 2015-03-12 | 1 | -1/+1 |
| | | | |||||
* | | | Update ActiveSupport::Subscriber docs | Scott Walkinshaw | 2015-03-24 | 1 | -7/+2 |
| |/ |/| | | | For consistency purposes with the changes done in https://github.com/rails/rails/pull/12285 | ||||
* | | Fix incorrect description for `assert_nothing_raised`. | Guo Xiang Tan | 2015-03-24 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #19485 from tgxworld/small_doc_fix | Rafael Mendonça França | 2015-03-24 | 1 | -1/+1 |
|\ \ | | | | | | | Small doc fix. [CI SKIP] | ||||
| * | | Small doc fix. [CI SKIP] | Guo Xiang Tan | 2015-03-24 | 1 | -1/+1 |
| | | | |||||
* | | | Make sure Array#to_sentence always returns a String | David Cornu | 2015-03-23 | 1 | -1/+1 |
|/ / | |||||
* | | Remove alias for `i_suck_and_my_tests_are_order_dependent`. | Guo Xiang Tan | 2015-03-24 | 1 | -2/+0 |
| | | |||||
* | | Add documentation for Duration#to_i for clarification | nerdinand | 2015-03-23 | 1 | -0/+24 |
| | | |||||
* | | Remove reference to Numeric#from_now, as it is no longer supported | nerdinand | 2015-03-23 | 2 | -30/+0 |
| | | |||||
* | | Deprecate alias_method_chain in favour of Module#prepend | Kir Shatrov | 2015-03-22 | 4 | -11/+19 |
| | | | | | | …as discussed #19413 | ||||
* | | Mark some constants as nodoc and remove unneeded namespace | Rafael Mendonça França | 2015-03-20 | 2 | -12/+10 |
| | | |||||
* | | Use Module#prepend instead of alias_method_chain | Kir Shatrov | 2015-03-20 | 2 | -20/+22 |
| | | | | | | | | | | | | | | Thanks @fbernier for suggestion! <3 At this moment we can use Module#prepend in all all cases except of Range because of the bug [1] in MRI 2.2 [1] https://bugs.ruby-lang.org/issues/10847 | ||||
* | | Merge pull request #19296 from Wildebeest/fix-race-ttl | Rafael Mendonça França | 2015-03-17 | 1 | -2/+2 |
|\ \ | | | | | | | Skip the `:race_condition_ttl` branch if the option is 0 or nil. | ||||
| * | | Skip the `:race_condition_ttl` branch if the option is 0 or nil. This fixes ↵ | Matt Wilde | 2015-03-11 | 1 | -2/+2 |
| | | | | | | | | | | | | an issue with the redis cache, where this code will sometimes throw an error out of SETEX when passing 0 as the `expires_at`. | ||||
* | | | add `DateTime.now` to list of `TimeHelpers#travel_to` stubbing [ci skip] | yuuji.yaginuma | 2015-03-12 | 1 | -9/+11 |
|/ / | |||||
* | | Revert "Take DST into account when locating TimeZone from Numeric." | Andrew White | 2015-03-09 | 1 | -7/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reverting this as it's not the implementation that we would like it to be. This is being used inside of ActiveSUpport::TimeZone[] and it's unaware of the context in which to find the timezone period so the timezone found changes depending on whether DST is in effect for the current period. This means that `'2001-01-01'.in_time_zone(-9)` changes from winter/summer even though it's the same date that we're trying to convert. Since finding timezones by numeric offsets is a bit hit and miss we should introduce a new API for finding them which supplies the date context in which we want to search and we should probably also deprecate the finding of timezones via the [] method, though this needs further discussion. This reverts commit 2cc2fa3633edd96773023c6b09d07c7b9d9b841d. | ||||
* | | Doc fixes [ci skip] | Islam Wazery | 2015-03-07 | 4 | -4/+4 |
| | | |||||
* | | Doc fix [ci skip] | Islam Wazery | 2015-03-07 | 1 | -7/+7 |
| | | |||||
* | | `number_to_percentage` and `precision: 0` work with `NAN` and `INFINITY`. | Yves Senn | 2015-03-06 | 1 | -1/+1 |
| | | | | | | | | Closes #19227. | ||||
* | | Merge pull request #19224 from davydovanton/doc-update-seconds-since-midnight | Abdelkader Boudih | 2015-03-06 | 1 | -1/+5 |
|\ \ | | | | | | | [ci skip] Update documentation for Time#seconds_since_midnight | ||||
| * | | [ci skip] Update documentation for Time#seconds_since_midnight | Anton Davydov | 2015-03-06 | 1 | -1/+5 |
| | | | |||||
* | | | Change *args to arg in CallbackSequence#call | eileencodes | 2015-03-05 | 1 | -7/+7 |
|/ / | | | | | | | | | | | `CallbackSequence#call` can only ever take one argument. Using `*args` here produces unnecessary array allocations. Since it only ever takes one argument we should use `arg` instead of `*args`. | ||||
* | | Merge pull request #19180 from sivsushruth/master | Arthur Nogueira Neves | 2015-03-05 | 1 | -0/+5 |
|\ \ | | | | | | | If TZInfo-data is not present in windows, let the user know. | ||||
| * | | If TZInfo-data is not present in windows, let the user know. | Sushruth Sivaramakrishnan | 2015-03-04 | 1 | -0/+5 |
| | | | |||||
* | | | Some documentation edits [ci skip] | Robin Dupret | 2015-03-05 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | * Fix a few typos * Wrap some lines around 80 chars * Rephrase some statements | ||||
* | | | Doc fix [ci skip] | Sushruth Sivaramakrishnan | 2015-03-05 | 1 | -1/+1 |
| | | | |||||
* | | | Doc fix [ci skip] | Sushruth Sivaramakrishnan | 2015-03-05 | 1 | -2/+2 |
| | | | |||||
* | | | Doc fix [ci skip] | Sushruth Sivaramakrishnan | 2015-03-05 | 1 | -1/+1 |
| | | | |||||
* | | | Doc fix [ci skip] | Sushruth Sivaramakrishnan | 2015-03-05 | 1 | -1/+1 |
| | | | |||||
* | | | Doc fix [ci skip] | Sushruth Sivaramakrishnan | 2015-03-05 | 1 | -1/+1 |
| | | | |||||
* | | | Doc fix [ci skip] | Sushruth Sivaramakrishnan | 2015-03-05 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #19189 from ↵ | Richard Schneeman | 2015-03-04 | 1 | -2/+5 |
|\ \ \ | | | | | | | | | | | | | | | | | mraidel/activesupport_cache_fetch_multi_documentation_fix fixes documentation for returned hash in cache.fetch_multi | ||||
| * | | | fixes documentation for returned hash in cache.fetch_multi | Michael Raidel | 2015-03-04 | 1 | -2/+5 |
| | | | | |||||
* | | | | Fix spelling [ci skip] | Yu Haidong | 2015-03-04 | 1 | -8/+8 |
| |/ / |/| | | |||||
* | | | Take DST into account when locating TimeZone from Numeric. | Yasyf Mohamedali | 2015-03-03 | 1 | -1/+7 |
|/ / | | | | | | | | | | | When given a specific offset, use the first result found where the total current offset (including any periodic deviations such as DST) from UTC is equal. | ||||
* | | Merge pull request #19173 from robin850/rbx-build | Rafael Mendonça França | 2015-03-02 | 1 | -1/+1 |
|\ \ | | | | | | | Improve the Rubinius build | ||||
| * | | Wrap inline rescue with or-equal calls | Robin Dupret | 2015-03-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | At the moment, `rescue_from` doesn't work with strings on Rubinius because of rubinius/rubinius#3272. | ||||
* | | | Move Array#without from Grouping to Access concern and add dedicated test ↵ | David Heinemeier Hansson | 2015-03-02 | 2 | -12/+12 |
|/ / | | | | | | | (relates to #19157) | ||||
* | | Use include? instead of in? for Enumerable#without. | Juanito Fatas | 2015-03-02 | 1 | -1/+1 |
| | | | | | | | | [egilburg] | ||||
* | | Add Enumerable#without | Todd Bealmear | 2015-03-01 | 2 | -0/+23 |
|/ | |||||
* | Merge pull request #19131 from ↵ | Yves Senn | 2015-02-28 | 1 | -1/+1 |
|\ | | | | | | | | | tgxworld/reduce_allocated_memory_in_module_delegate Reduce allocated memory for Module#delegate. | ||||
| * | Reduce allocated memory for Module#delegate. | Guo Xiang Tan | 2015-03-01 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Add code examples for Module#anonymous? documentation | Anton Davydov | 2015-02-28 | 1 | -0/+7 |
| | |