aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
Commit message (Collapse)AuthorAgeFilesLines
* base (refined) Pathname#ascendant_of? also on Pathname#ascendXavier Noria2015-11-121-7/+2
| | | | | | | | | A small rewrite in a last attempt at writing obvious and portable code without manual string manipulation. Note that Pathname#== uses string comparison on Windows, so if client code passes "C:\foo" and "c:/foo/bar" the predicate won't see the former is an ascendant of the latter. Risky business.
* Use the file watcher defined by the app configDharam Gollapudi2015-11-111-1/+1
| | | This can make use of the FileEventedUpdateChecker, if available.
* let filter_out_descendants do less passesXavier Noria2015-11-111-9/+9
| | | | | | Whatever the inner loop selects, we already know is a descendant and can be filtered out right away from dirs_sorted_by_nparts to skip useless iterations.
* revises the implementation of Pathname#ascendant_of? (in refinement)Xavier Noria2015-11-111-1/+8
|
* update docs for MessageEncryptor#new to recommend a KDF [ci skip]Paul Kehrer2015-11-111-2/+2
|
* Add days_in_year methodJon Pascoe2015-11-111-0/+6
|
* Minor fix in Module#mattr_reader documentationYuri Kasperovich2015-11-111-1/+1
|
* fast and consistent return when local_cache does not existMichael Grosser2015-11-111-9/+12
|
* applies code style guidelinesXavier Noria2015-11-112-7/+7
|
* simplifies the implementation of #watching?Xavier Noria2015-11-111-16/+12
|
* simplifies directories_to_watchXavier Noria2015-11-111-7/+4
|
* adds a comment about how does filter_out_descendants preserve orderXavier Noria2015-11-111-0/+1
|
* rewrites bare loop as untilXavier Noria2015-11-111-3/+1
|
* simplifies the implementation of existing parentXavier Noria2015-11-101-13/+2
|
* indents private methods as per our guidelinesXavier Noria2015-11-101-28/+28
|
* simplifies PathHelper with a Pathname refinementXavier Noria2015-11-101-22/+22
|
* the evented monitor filters out descendantsXavier Noria2015-11-101-10/+36
|
* s/@modified/@updated/gXavier Noria2015-11-081-6/+6
|
* stop ascending at the longest common subpathXavier Noria2015-11-081-33/+66
| | | | This commit also bases everything on Pathname internally.
* remove explicit File.expand_path callXavier Noria2015-11-081-1/+1
|
* no need to have access to the listenerXavier Noria2015-11-081-4/+1
|
* revises the implementation of the evented file monitorXavier Noria2015-11-081-24/+65
|
* implements an evented file update checker [Puneet Agarwal]Xavier Noria2015-11-082-0/+68
| | | | | | | | | | | | This is the implementation of the file update checker written by Puneet Agarwal for GSoC 2015 (except for the tiny version of the listen gem, which was 3.0.2 in the original patch). Puneet's branch became too out of sync with upstream. This is the final work in one single clean commit. Credit goes in the first line using a convention understood by the contrib app.
* Merge pull request #22206 from grosser/grosser/drySantiago Pastorino2015-11-081-20/+15
|\ | | | | dry up increment/decrement
| * dry up increment/decrementMichael Grosser2015-11-071-20/+15
| |
* | Merge pull request #21897 from swaathi/masterKasper Timm Hansen2015-11-072-10/+43
|\ \ | | | | | | Parameterize with options to preserve the case of string
| * | Parameterize with options to preserve case of stringSwaathi K2015-11-072-10/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added test cases Using kwargs instead of three seperate functions Updated parameterize in transliterate.rb Updated parameterize in transliterate.rb Added deprecation warnings and updating RDoc+Guide Misspelled separtor. Fixed. Deprecated test cases and added support to parameterize with keyword parameters Squashing commits. Fixed test cases and added deprecated test cases Small changes to Gemfile.lock and CHANGELOG Update Gemfile.lock
* | | Merge pull request #22197 from grosser/grosser/fetchKasper Timm Hansen2015-11-071-9/+5
|\ \ \ | |_|/ |/| | do not override fetch on local cache
| * | do not override fetch on local cacheMichael Grosser2015-11-071-9/+5
| |/ | | | | | | | | | | fetch is supposed to behave differently, this was a mistake merged in https://github.com/rails/rails/pull/22194
* | Merge pull request #21806 from kachick/fix-transformer-sizeEileen M. Uchitelle2015-11-072-4/+4
|\ \ | |/ |/| Return a sized Enumerator from Hash#transform_values{!}
| * Return a sized Enumerator from Hash#{transform_values{!}|transform_keys{!}}Kenichi Kamiya2015-09-292-4/+4
| |
* | Merge pull request #22193 from grosser/grosser/multiEileen M. Uchitelle2015-11-061-3/+3
|\ \ | | | | | | call local_cache 1 time instead of 3 times
| * | call local_cache 1 time instead of 3 timesMichael Grosser2015-11-061-3/+3
| | | | | | | | | | | | | | | LocalCache read_entry previously called the local_cache method 3 times, now it only calls it once and keeps the result in a local variable.
* | | use prepend instead of extending every instanceMichael Grosser2015-11-063-30/+27
|/ / | | | | | | | | extending an instance with a module puts the methods on top of it, prepend does the same but on the class level, so less work for us and more standard way of doing things
* | Merge pull request #22194 from grosser/grosser/read-nilSean Griffin2015-11-051-3/+6
|\ \ | | | | | | cache nil replies from backend cache so misses are fast too
| * | cache nil replies from backend cache so misses are fast tooMichael Grosser2015-11-051-3/+6
| | |
* | | Require only necessary concurrent-ruby classes.Jerry D'Antonio2015-11-046-7/+7
| | |
* | | Merge pull request #22174 from metaskills/defsetupYves Senn2015-11-041-2/+1
|\ \ \ | | | | | | | | Update docs/comments to use setup/teardown blocks vs. methods. [ci skip]
| * | | Update docs/comments to use setup/teardown blocks vs. methods.Ken Collins2015-11-041-1/+0
| | | | | | | | | | | | | | | | * Remove super for setup block. Not needed.
| * | | Update docs/comments to use setup/teardown blocks vs. methods.Ken Collins2015-11-031-1/+1
| | | | | | | | | | | | | | | | As discussed in the minitest-spec-rails issue (http://git.io/vlHxx) Rails uses setup/teardown callbacks. Defining `setup` or `teardown` methods vs. blocks will yield inconsistent behavior in the callback chain.
* | | | Fix deprecation message when frame doesn't have absolute_pathRafael Mendonça França2015-11-031-1/+1
|/ / / | | | | | | | | | | | | | | | When a frame is an eval block without filename argument there is no absolute_path so the previous implementation would fail because `nil` doesn't responds to `start_with?`.
* | | Merge branch 'master' of github.com:rails/docrailsVijay Dev2015-10-316-10/+10
|\ \ \
| * | | Remove wrong period mark in `ActiveSupport::LogSubscriber` docs [ci skip]amitkumarsuroliya2015-10-111-1/+1
| | | |
| * | | Add missing punctuation mark in `ActiveSupport` docs [ci skip]amitkumarsuroliya2015-10-114-7/+7
| | | | | | | | | | | | It improves readability of docs
| * | | Fixed `ActiveSupport::NumberHelper` Outputs [ci skip]amitkumarsuroliya2015-10-111-2/+2
| | | |
| * | | Improved `KeyError` messages on bang version, since commit ↵amitkumarsuroliya2015-10-111-1/+1
| | | | | | | | | | | | | | | | https://github.com/rails/rails/commit/e768c519fb6015e00961702a5165c6dab548a954 bang version produces `KeyError` [ci skip]
| * | | Revert "Corrected ActiveSupport `time_with_zone` outputs [ci skip]"Rafael Mendonça França2015-10-101-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit efbd62f0c5c927a08e860b318b7bb561b2602a98. Right now Eastern Time zone is on daylight saving, so the output in the documentation is different but this doesn't mean that it is wrong. Daylight savings only happen in 3 months in a year so it is better to use the normal time zone in the documentation.
| * | | Corrected ActiveSupport `time_with_zone` outputs [ci skip]amitkumarsuroliya2015-10-111-7/+7
| | | |
| * | | Fixed wording in Assertion docs, changed ‘Assert’ -> ‘Asserts’Ronak Jangir2015-10-071-1/+1
| | | |
* | | | Merge pull request #11872 from AvnerCohen/log_namespaceSean Griffin2015-10-301-1/+1
|\ \ \ \ | | | | | | | | | | When testing cache issues, it is useful to log the actual key, including namespace