aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/log_subscriber
Commit message (Collapse)AuthorAgeFilesLines
* [Active Support] require_relative => requireAkira Matsuda2017-10-211-3/+3
| | | | This basically reverts 8da30ad6be34339124ba4cb4e36aea260dda12bc
* [Active Support] `rubocop -a --only Layout/EmptyLineAfterMagicComment`Koichi ITO2017-07-111-0/+1
|
* Use frozen-string-literal in ActiveSupportKir Shatrov2017-07-091-0/+1
|
* [Active Support] require => require_relativeAkira Matsuda2017-07-011-3/+3
|
* Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-1/+1
|
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-5/+5
|
* applies new string literal convention in activesupport/libXavier Noria2016-08-061-3/+3
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* 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.
* Merge branch 'master' of github.com:rails/railsVijay Dev2015-08-241-2/+2
|\ | | | | | | | | Conflicts: guides/source/security.md
| * Add `:nodoc:` for internal testing methods [ci skip]Robin Dupret2015-07-281-2/+2
| |
* | [ci skip] Add missing `super` to the setup of the ↵Lucas Mazza2015-08-141-0/+1
|/ | | | `ActiveSupport::LogSubscriber::TestHelper` example.
* Add missing requireCarlos Antonio da Silva2013-07-011-0/+1
| | | | | | Commit cfa35c55bb38b27af305ad21408e181bc3cd739e removed the buffered_logger from AS, which required the logger file. Now we need to add the proper require here.
* remove deprecated `BufferedLogger`.Yves Senn2013-07-011-1/+0
|
* `Model.all` alone does nothingAkira Matsuda2013-01-041-1/+1
|
* update AS/log_subscriber and AS/multibyte docs [ci skip]Francesco Rodriguez2012-09-141-10/+9
|
* Make MockLogger work with blocks.Rafael Mendonça França2012-05-171-1/+1
|
* Ensure blocks given to subscriber are properly yieldJosé Valim2012-05-171-4/+5
|
* Fixed logger bug introduced by #2237Brian Cardarella2012-05-171-0/+3
|
* * BufferedLogger is deprecated. Use ActiveSupport::Logger, or the loggerAaron Patterson2011-12-191-2/+2
| | | | from Ruby stdlib.
* Modified content in guides and commentsArun Agrawal2011-09-041-2/+2
| | | | | | for "assert /" warnings. Removed because if somebody will use this code they will get warnings!
* Logs should show overridden method; Issue 426David Lee2011-05-071-0/+1
|
* Active Support typos.R.T. Lechow2011-03-051-1/+1
|
* Fix incorrect word.Ben Orenstein2011-03-051-1/+1
|
* notifier should be saved and re-set, not deletedAaron Patterson2011-02-071-1/+2
|
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-1/+1
| | | | 's/[ \t]*$//' -i {} \;)
* Fix a failing test in Railtie and properly define all severity levels in ↵José Valim2010-07-201-4/+14
| | | | MockLogger for LogSubscriber.
* mocking out debing? call in the MockLoggerAaron Patterson2010-07-191-0/+3
|
* Notifier API == Fanout API, so replace Notifier with Fanout as they quack ↵Aaron Patterson2010-07-181-6/+2
| | | | the same
* Move Rails::LogSubscriber to ActiveSupport::LogSubscriber, allowing ↵José Valim2010-06-241-0/+90
frameworks like ActiveRecord and ActiveResource to log outsude Rails::Application [#4816 state:resolved]