aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/notifications
Commit message (Expand)AuthorAgeFilesLines
* It may be better to explicitly require 'object/try' where we call `try`Akira Matsuda2019-08-011-0/+1
* Merge pull request #36318 from itsWill/fix_event_object_payloadRafael França2019-07-252-1/+3
|\
| * Merge payload for EventObject subscribersGuilherme Mansur2019-05-222-1/+3
* | Enable `Layout/EmptyLinesAroundAccessModifier` copRyuta Kamizono2019-06-131-1/+0
* | Fix `subscribed` with no pattern to subscribe all messagesRyuta Kamizono2019-06-031-3/+3
|/
* Introduce 'ActiveSupport::Notifications::Fanout::Subscribers::MonotonicTimed'...Vishal Telangre2019-05-101-4/+21
* revert changes to monotonic timesKevin Solorio2019-04-301-2/+2
* Remove @duration instance variable since we're not maintaining instances vari...Vishal Telangre2019-04-161-2/+1
* Use monotonic time to record `started` and `finished` time values for an even...Vishal Telangre2019-04-161-2/+2
* Fix: #cpu_time doesn't work for a `ActiveSupport::Notifications::Fanout::Subs...Vishal Telangre2019-04-161-2/+2
* Update CHANGELOG and docsAli Ibrahim2019-03-221-3/+4
* Update AS::Notifications::Instrumenter#instrumentAli Ibrahim2019-03-221-1/+1
* Ruby 2.7 warning: creating a Proc without a blockutilum2019-02-131-2/+2
* Merge pull request #32861 from zvkemp/asn-unsubscribe-proxyAaron Patterson2019-02-111-3/+35
|\
| * use a proxy matcher for AS::N fanoutzvkemp2019-02-111-3/+35
* | Fix elapsed time calculationsbogdanvlviv2019-02-081-1/+1
|/
* Keep cache for strings in notifications/fanoutJohn Hawthorn2019-02-011-3/+5
* Make Notifications::Fanout#listeners_for fasterJohn Hawthorn2019-02-011-5/+18
* Don't expose internal `clock_gettime_supported?` class methodRyuta Kamizono2018-11-301-1/+2
* Deprecate `event.end = Time.now` in favor of `event.finish!`Ryuta Kamizono2018-11-201-2/+6
* Windows support for parallelization and instrumenterGannon McGibbon2018-11-081-1/+6
* Only use CLOCK_PROCESS_CPUTIME_ID if it's definedBart de Water2018-07-291-2/+8
* fix arity check to use "parameters" for backwards compatAaron Patterson2018-07-261-4/+9
* Always subscribe to event objects via `AS::Notifications.subscribe`Aaron Patterson2018-07-262-12/+9
* Subscribe to event objects via `subscribe_event`Aaron Patterson2018-07-262-1/+39
* Match the units in `duration` (milliseconds)Aaron Patterson2018-07-261-1/+7
* Add cpu_time, idle_time, and allocations to EventEileen Uchitelle2018-07-261-0/+47
* [Active Support] `rubocop -a --only Layout/EmptyLineAfterMagicComment`Koichi ITO2017-07-112-0/+2
* Use frozen-string-literal in ActiveSupportKir Shatrov2017-07-092-0/+2
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-022-2/+0
* Enforce frozen string in RubocopKir Shatrov2017-07-012-0/+2
* Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-1/+1
* fixes remaining RuboCop issues [Vipul A M, Xavier Noria]Xavier Noria2016-09-011-1/+1
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-3/+3
* applies new string literal convention in activesupport/libXavier Noria2016-08-062-3/+3
* Adds exception object to instrumenter's payloadRyan T. Hosford2015-12-311-0/+1
* Subscribing to notifications while inside the said instrumented section.thedarkone2015-11-282-4/+9
* Require only necessary concurrent-ruby classes.Jerry D'Antonio2015-11-041-1/+1
* Replaced `ThreadSafe::Map` with successor `Concurrent::Map`.Jerry D'Antonio2015-09-191-3/+3
* :nodoc: internal class [ci skip]Godfrey Chan2015-08-101-1/+1
* Replace `#=>` with `# =>` [ci skip]claudiob2014-12-171-1/+1
* Fix docs for AS::Notifications::Event#durationclaudiob2014-12-171-2/+2
* Add docs for AS::Notifications::Event#durationclaudiob2014-12-171-0/+12
* Avoid looping through subscribers when unsubscribing with a subscriber object.Guo Xiang Tan2014-06-011-5/+10
* Update documentation to reflect unsubscription with name.Guo Xiang Tan2014-06-011-2/+2
* use a thread local rather than a queue so events are in the right orderAaron Patterson2013-10-301-7/+4
* use a queue rather than a list. fixes #12069Aaron Patterson2013-10-281-1/+1
* duration is called multiple times in dev, so lets cache itAaron Patterson2013-08-181-1/+2
* Bug fix: Evented notification subscribers can handle published eventsCarl Lerche2013-05-171-0/+7
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-03-301-1/+1
|\