time_bandits 0.12.5 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be90aa917ea9d4256501dc921da7fea5c9f1c9608f89fc7e5e5dace634b0353f
4
- data.tar.gz: 29d87ff61dfa62a3202434df9d687ae9dc8e9d5e6e4b9e0ef4709049b7abee51
3
+ metadata.gz: b008edd801936f7287a5cfd453ed13af7c883ec9780731e78a490da3ddaa3c6f
4
+ data.tar.gz: f062f276b88df3b380e8dc6b9ddda4c81e164c878f6e5867167e43bf9155ab06
5
5
  SHA512:
6
- metadata.gz: e6692b8d8d10889442cc67f583fb6b98535f6a7ab3b060698c9dfef256f933bb976670dd1e672ba16a63d085d5238ade7704e7c1e9240ffc3da67d60e9a33435
7
- data.tar.gz: b98ab1c3669dd66162199ad6a78bf113a598b8836a0a793404fa1dd28248fc43751ad32439ae03b3732a16f7476ad2109cacdc2c9cc7b57eec24ecb07475c460
6
+ metadata.gz: 9c60df11a4defd9f8764d267575b72918077fd51f0380a3f655af5f6f5b9b7c9e15a43621869f6f34623ee859d04feb35f91427fd60a50d33ec4fae97e6a8196
7
+ data.tar.gz: f862c5684068b9ba85bfac90a4472639a3e3c72f1b0ea63e83824f4b635bbb8e853e79706015ceb633c12ad636bdcdc7c8bff2821b4f894846bcd61def5da757
@@ -13,7 +13,7 @@ jobs:
13
13
 
14
14
  strategy:
15
15
  matrix:
16
- ruby-version: [3.1.0, 3.0.3, 2.7.5, 2.6.9]
16
+ ruby-version: [3.1.2, 3.0.4, 2.7.6]
17
17
 
18
18
  steps:
19
19
  - uses: actions/checkout@v2
data/Appraisals CHANGED
@@ -1,14 +1,17 @@
1
1
  appraisals = [
2
- "6.0.4.4",
3
- "6.1.4.4",
2
+ "6.0.4.7",
3
+ "6.1.5",
4
4
  ]
5
5
 
6
6
  appraisals.insert(0, "5.2.6") if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("3.0.0")
7
- appraisals << "7.0.1" if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.7.0")
7
+ appraisals << "7.0.2.3" if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.7.0")
8
8
 
9
9
  appraisals.each do |rails_version|
10
- appraise "activesupport-#{rails_version}" do
11
- gem "activesupport", rails_version
12
- gem "activerecord", rails_version
10
+ %w(4.0 5.0).each do |redis_version|
11
+ appraise "activesupport-#{rails_version}-redis-#{redis_version}" do
12
+ gem "redis", "~> #{redis_version}"
13
+ gem "activesupport", rails_version
14
+ gem "activerecord", rails_version
15
+ end
13
16
  end
14
17
  end
data/CHANGELOG.md ADDED
@@ -0,0 +1,324 @@
1
+ # CHANGELOG
2
+
3
+ ## 0.13.0
4
+ * Support redis 5.0.
5
+
6
+ ## Version 0.12.7
7
+ * logging start time requires a real time, not a monotonic clock
8
+
9
+ ## Version 0.12.6
10
+ * use ruby 3.1.1 in GitHub actions
11
+ * updated appraisals
12
+ * restrict Redis gem to a version before 5.0 until 5.x has become
13
+ stable
14
+ * use monotonic clocks for time measurements
15
+
16
+ ## Version 0.12.5
17
+ * use GC.stat(:malloc_increase_bytes) to measure allocated bytes as fallback
18
+ * support ruby 3.1.0 GC.total_time
19
+ * ruby 3.1.0 needs rails 7.0.1 to run the tests
20
+ * include ruby-3.1.0 on GitHub actions
21
+
22
+ ## Version 0.12.4
23
+ * rails 7.0.0 compatibility
24
+ * only test Rails 3.0.0 with Ruby >= 2.7.0
25
+ * updated Appraisals
26
+ * use safe ruby version to run tests on GitHub
27
+ * switched to GitHub actions (#19)
28
+ * try to fix travis
29
+ * updated appraisals
30
+ * remove gemfiles created by appraisals and git ignore them
31
+
32
+ ## Version 0.12.3
33
+ * relax minitest dependency
34
+ * suppress Ruby 2.7 warnings in action controller tests
35
+ * updated test container versions
36
+
37
+ ## Version 0.12.2
38
+ * fixed that completed line was logged twice in Rails test environment
39
+ * split license into separate file
40
+ * added travis badge
41
+
42
+ ## Version 0.12.1
43
+ * install GC time bandit automatically inRails applications
44
+ * only load railtie if class Rails::Railtie is defined
45
+
46
+ ## Version 0.12.0
47
+ * removed leftover from old Rails plugin times
48
+ * don't need sudo on travis
49
+ * Merge pull request #15 from toy/patch-1
50
+ * try to fix travis build
51
+ * doc rephrasing
52
+ * updated README
53
+ * relax active support version requirement to 5.2.0
54
+ * updated travis build matrix
55
+ * dropped support for old rails and ruby versions
56
+ * silence ruby warnings
57
+ * updated docker images
58
+ * require at least version 5.2.4.3 for activesupport
59
+ * updated appraisals to only test supported Rails versions
60
+ * damn travis
61
+ * travis fu
62
+ * updated ruby versions
63
+ * trying to fix travis
64
+
65
+ ## Version 0.11.0
66
+ * added and updated appraisals
67
+ * support rails 6
68
+ * Add changelog url to gemspec
69
+
70
+ ## Version 0.10.12
71
+ * updated README
72
+ * also support future 5.0.x versions
73
+ * added appraisal for rails 5.0.7
74
+ * Merge pull request #14 from mediafinger/master
75
+ * Call type_casted_binds with only one argument in Rails 5.0.7
76
+
77
+ ## Version 0.10.11
78
+ * prepare 0.10.11 release
79
+ * clarified how TimeBanditry gets activated in railtie
80
+ * test rails 5.2.0 compatibility
81
+ * Merge pull request #13 from sghosh23/update_rails_version_active_record_monkey_patch
82
+ * add rails version 5.2 to support active record monkey patch
83
+ * fix test failures on ActiveRecord 4.1.16
84
+ * reinstalled appraisals
85
+ * try to fix travis builds
86
+
87
+ ## Version 0.10.10
88
+ * make sure sql method can be executed on logsubscriber
89
+ * updated appraisals
90
+
91
+ ## Version 0.10.8
92
+ * added specialized activerecord logging for Rails >= 5.1.5
93
+
94
+ ## Version 0.10.8
95
+ * rails has changed render_bind in 5.0.3
96
+ * updated README
97
+ * added rabbitmq as a service for travis
98
+ * added more rails versions to test against
99
+ * abort rake task when system calls fail
100
+ * fixed deprecation warning for ruby 2.4.1
101
+
102
+ ## Version 0.10.7
103
+ * changed README format to markdown
104
+ * Merge pull request #11 from manveru/patch-1
105
+ * Adapt log_sql_statement for Rails 5.1
106
+ * changed travis command
107
+
108
+ ## Version 0.10.6
109
+ * updated reales notes
110
+ * Merge pull request #9 from pinglamb/master
111
+ * added .travis.yml
112
+ * updated rails versions for appraisals
113
+
114
+ ## Version 0.10.5
115
+ * make activerecord monkey patch available for rails 5.1
116
+
117
+ ## Version 0.10.4
118
+ * protect against Rails 5 firing on_load handlers multiple times
119
+
120
+ ## Version 0.10.3
121
+ * fixed activerecord logging monkey patch
122
+
123
+ ## Version 0.10.2
124
+ * go back to using alias_method to enable testing with rspec
125
+
126
+ ## Version 0.10.1
127
+ * fixed broken module.prepend
128
+
129
+ ## Version 0.10.0
130
+ * updated release notes
131
+ * rebased on master
132
+ * added docker compose file to start redis, memcached, mysql and rabbitmq for testing
133
+ * added rails 5 to appraisals
134
+ * active record log subscriber changes to support rails 5
135
+ * checked and updated action controller hacks for rails 5
136
+ * rails 5 fixed the memcache store stats bug on fetch
137
+ * rails 5 deprecated alias_method_chain, used Module.prepend instead
138
+ * rails 5 deprecated string values for middlewares
139
+
140
+ ## Version 0.9.2
141
+ * fixed sequel gem monkey patch
142
+ * I really hate the stupid decision by rake to force ruby -w on everyone
143
+ * updated rails versions in appraisals
144
+
145
+ ## Version 0.9.1
146
+ * redis time consumer: make sure to log ASCII in debug mode
147
+
148
+ ## Version 0.9.0
149
+ * added beetle time consumer
150
+ * Multiply 1000 to get the actual millisecond
151
+
152
+ ## Version 0.8.1
153
+ * make sure every consumer has a current_runtime methods (duh)
154
+
155
+ ## Version 0.8.0
156
+ * access current database runtime including not yet consumed time
157
+
158
+ ## Version 0.7.4
159
+ * fixed that actions without render showed zero db time
160
+ * removed .lock files
161
+ * use appraisal for testing against multiple active support versions
162
+ * test with rails 4.2.4
163
+
164
+ ## Version 0.7.3
165
+ * in rails 4.2 dalli is always instrumented
166
+ * monkey patches seem to be compatible with rails 4.2
167
+
168
+ ## Version 0.7.2
169
+ * updated to support ruby 2.2.0
170
+
171
+ ## Version 0.7.1
172
+ * style change
173
+ * updated README
174
+ * measure time and calls with sequel
175
+
176
+ ## Version 0.7.0
177
+ * make the most out of an unpatched ruby
178
+
179
+ ## Version 0.6.7
180
+ * fixed wrong nesting of public :sql
181
+
182
+ ## Version 0.6.6
183
+ * fixed duplicate log lines for active record monkey patch and rails 4.1
184
+ * Count redis round trips not calls
185
+
186
+ ## Version 0.6.5
187
+ * rails monkey patches are compatible with 4.1
188
+
189
+ ## Version 0.6.4
190
+ * make sure not to call 'instrument=' if a rails 4 app uses :dalli_store instead of :mem_cache_store
191
+
192
+ ## Version 0.6.3
193
+ * rails 3.2 columns don't understand binary?
194
+
195
+ ## Version 0.6.2
196
+ * rails 4.0 updates to active_record monkey_patch
197
+
198
+ ## Version 0.6.1
199
+ * support for ruby 2.1
200
+ * added test for GC time consumer
201
+
202
+ ## Version 0.6.0
203
+ * updated README
204
+ * added tests for dalli and redis and new completed line behavior
205
+ * patched dalli consumer to work correctly with rails 4
206
+ * added redis time consumer
207
+ * don't include bandits in the the completed line which haven't measured anything
208
+
209
+ ## Version 0.5.1
210
+ * added license information to gemspec
211
+
212
+ ## Version 0.5.0
213
+ * ugly hack to ensure Completed lines are logged in the test environment
214
+ * reset time bandits before running controller tests
215
+ * renamed RailsCache consumer to dalli and rely on dalli for logging
216
+ * avoid calling logger in production
217
+ * install some gems for debugging
218
+ * updated README
219
+ * we're all milliseconds now
220
+ * we are thread safe now. lose the Rack::Lock middleware
221
+ * drop rails 2 support
222
+ * switch database consumer to use base_consumer
223
+ * added a general rails cache consumer (can be used to replace memcache consumers)
224
+ * make memcache consumers threadsafe
225
+ * use structs instead of hashes for counters
226
+ * more groundwork for thread safe time bandits
227
+ * added some tests
228
+
229
+ ## Version 0.4.1
230
+ * added rake dev dependency
231
+ * we can't rely on Rack::Sendfile to be around
232
+
233
+ ## Version 0.4.0
234
+ * rails 4.0 and tagged logging support
235
+
236
+ ## Version 0.3.1
237
+ * need to call TimeBandits.consumed to get correct db time stats
238
+
239
+ ## Version 0.3.0
240
+ * use thread local variables gem
241
+ * make use of thread_local_variable_access gem
242
+
243
+ ## Version 0.2.2
244
+ * enable GC stats after passenger has forked a new worker process
245
+ * reset time bandits after rails initialization process has been completed
246
+
247
+ ## Version 0.2.1
248
+ * use the correct rails version specific code to extract raw_payload
249
+
250
+ ## Version 0.2.0
251
+ * basic rails 3.1 and 32. compatibility
252
+
253
+ ## Version 0.1.4
254
+ * fixed bug related to mixing seconds and millicesonds
255
+
256
+ ## Version 0.1.3
257
+ * db time is already measured in milliseconds
258
+
259
+ ## Version 0.1.2
260
+ * the Rails 3 database consumer no longer uses instance variables for the statistics
261
+
262
+ ## Version 0.1.1
263
+ * use own middlware logger and provide viewtime and action for logjam_agent
264
+
265
+ ## Version 0.1.0
266
+ * ignore some files
267
+ * the version numbering is ridiculous
268
+ * add a bit of backtrace info
269
+ * removed last traces of agent suport
270
+ * provide metrics for rack middlewares
271
+ * metrics for rails2 database adapter
272
+ * improved metrics for memcached
273
+
274
+ ## Version 0.0.9
275
+
276
+ * Relax Rails version check, still running fine on 2.3.14
277
+ * metrics agent support for rails 2
278
+
279
+ ## Version 0.0.8
280
+ * gem compatibility for rails 2.3.x
281
+ * updated README
282
+
283
+ ## Version 0.0.7
284
+ * git ignore the Gemfile.lock
285
+ * Assume status 500 in case of an exception being raised
286
+ * Fail gracefully if an exception occurs during before_dispatch
287
+
288
+ ## Version 0.0.6
289
+ * updated gemspec to pin to the right branch on github
290
+
291
+ ## Version 0.0.5
292
+ * prepare new version (now with activerecord support)
293
+ * updated readme
294
+ * database consumer is now thread safe
295
+ * initial version of ActiveRecord time consumer
296
+
297
+
298
+ ## Version 0.0.4
299
+ * oh man. concentrate!
300
+
301
+ ## Version 0.0.3
302
+ * oops
303
+
304
+ ## Version 0.0.2
305
+ * refactored rack logger
306
+
307
+ ## Version 0.0.1
308
+ * now a proper rails3 gem plugin
309
+ * removed log ouput
310
+ * don't install time bandits per default (app needs control over order of bandits in completed line)
311
+ * use the more accurate timing info
312
+ * Merge branch 'master' into rails3
313
+ * deleted unused file
314
+ * Merge branch 'master' into rails3
315
+ * checked in some xing modifications
316
+ * first stab at supporting rails3
317
+ * JRuby support for GC and memory statistics, using the jmx gem.
318
+ * during initialization, enable memcache and GC stats if they are available
319
+ * we are compatible to activerecord 2.3.5
320
+ * Merge branch 'master' of github.com:skaes/time_bandits
321
+ * time bandits registration interface changed and got a new method for creating log lines outside ActionController
322
+ * added Rakefile with rdoc task
323
+ * removed Rakefile
324
+ * initial import
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in time_bandits.gemspec
4
4
  gemspec
5
+
6
+ gem "hiredis-client"
data/README.md CHANGED
@@ -84,114 +84,3 @@ changed so much of the code that is is practically a full rewrite, hence we chan
84
84
  ## Running Tests
85
85
 
86
86
  Run `docker-compose up` to start Redis, MySQL, RabbitMQ and Memached containers, then run `rake`.
87
-
88
-
89
- ## Release Notes
90
-
91
- ## Version 0.12.3
92
- - suppress Ruby 2.7 warnings about keyword parameters in controller tests
93
-
94
- ## Version 0.12.2
95
- - fixed that completed line was logged twice in Rails test environment
96
-
97
- ## Version 0.12.1
98
- - support having the rails gem in a bundle without activating the time bandits railtie
99
- - automatically install the garbage collection time bandit in rails applications
100
-
101
- ## Version 0.12.0
102
- - drops support for Rails versions before 5.2.0 and Ruby versions before 2.2.0
103
- - makes it possible to use individual time bandits without Rails (e.g. in a Sinatra app)
104
-
105
- ## Version 0.11.0
106
- - supports rails 6.0.0
107
-
108
- ## Version 0.10.12
109
- - supports rails 5.0.7
110
-
111
- ## Version 0.10.11
112
- - support rails 5.2.0
113
-
114
- ## Version 0.10.10
115
- - fixed regression introduced in 0.10.9
116
-
117
- ### Version 0.10.9
118
- - added specialized activerecord logging for Rails >= 5.1.5
119
-
120
- ### Version 0.10.8
121
- - rails has changed render_bind in 5.0.3
122
-
123
- ### Version 0.10.7
124
- - fixed bug in activerecord monkeypatch for Rails 5.1
125
-
126
- ### Version 0.10.6
127
- - fixed time calculation for rails 4
128
-
129
- ### Version 0.10.5
130
- - enabled activerecord monkeypatch for rails 5.1
131
-
132
- ### Version 0.10.4
133
- - protect against Rails 5 firing on_load handlers multiple times
134
-
135
- ### Version 0.10.3
136
- - fixed activerecord monkeypatch
137
-
138
- ### Version 0.10.2
139
- - controller testing fixed for rspec
140
-
141
- ### Version 0.10.1
142
- - fixed incorrect module prepend which broke controller testing
143
-
144
- ### Version 0.10.0
145
- - support rails 5
146
-
147
- ### Version 0.9.2
148
- - sequel gem changes broke sequel time consumer
149
-
150
- ### Version 0.9.1
151
- - make sure redis times consumer logs keys in ASCII
152
-
153
- ### Version 0.9.0
154
- - added beetle time consumer
155
-
156
- ### Version 0.8.1
157
- - bugfix
158
-
159
- ### Version 0.8.0
160
- - support retrieving current runtime including not yet consumed time
161
-
162
- ### Version 0.7.4
163
- - use appraisal for testing against multiple rails versions
164
- - bugfix for actions without render
165
-
166
- ### Version 0.7.3
167
- - bugfix dalli consumer for rails 4.2
168
-
169
- ### Version 0.7.2
170
- - support ruby 2.2.0
171
-
172
- ### Version 0.7.1
173
- - support measuring sequel gem
174
-
175
- ### Version 0.7.0
176
- - switched to byebug (debugger does not fully support 2.0 and 2.1 not at all)
177
- - adapted garbage collection statistics to work for 2.1
178
- - improved rails 4.x compatibility
179
- - GC time consumer now tries to make the most out of an unpatched ruby
180
-
181
- ### Version 0.6.0
182
- - added redis time consumer
183
- - fixed rails 4.0 problems with builtin mem_cache_store
184
- - now only consumers which measured something are added to the completed line
185
-
186
- ### Version 0.5.1
187
- - added license file
188
-
189
- ### Version 0.5
190
- - has dropped rails 2 support
191
- - relies on ActiveSupport::Notifications
192
- - is supposedly thread safe
193
- - all measurements are thread local (except GC statistics)
194
- - times are all measured in milliseconds internally
195
- - added class TimeBandits::TimeConsumers::BaseConsumer to simplify writing custom consumers
196
-
197
-
data/docker-compose.yml CHANGED
@@ -17,7 +17,7 @@ services:
17
17
 
18
18
  redis:
19
19
  container_name: redis
20
- image: redis:5.0
20
+ image: redis:6.0
21
21
  ports:
22
22
  - "6379:6379"
23
23
 
@@ -1,12 +1,36 @@
1
1
  require 'redis'
2
- class Redis
3
- class Client
4
- alias :old_logging :logging
5
2
 
6
- def logging(commands, &block)
7
- ActiveSupport::Notifications.instrument('request.redis', commands: commands) do
8
- old_logging(commands, &block)
3
+ if Redis::VERSION < "5.0"
4
+
5
+ class Redis
6
+ class Client
7
+ alias :old_logging :logging
8
+
9
+ def logging(commands, &block)
10
+ ActiveSupport::Notifications.instrument('request.redis', commands: commands) do
11
+ old_logging(commands, &block)
12
+ end
13
+ end
14
+ end
15
+ end
16
+
17
+ else
18
+
19
+ module TimeBandits
20
+ module RedisInstrumentation
21
+ def call(command, redis_config)
22
+ ActiveSupport::Notifications.instrument("request.redis", commands: [command]) do
23
+ super
24
+ end
25
+ end
26
+
27
+ def call_pipelined(commands, redis_config)
28
+ ActiveSupport::Notifications.instrument("request.redis", commands: commands) do
29
+ super
30
+ end
9
31
  end
10
32
  end
11
33
  end
34
+ RedisClient.register(TimeBandits::RedisInstrumentation)
35
+
12
36
  end
@@ -12,10 +12,11 @@ Sequel::Database.class_eval do
12
12
 
13
13
  def log_connection_yield(*args, &block)
14
14
  begin
15
- start = Time.now
15
+ start_time = Process.clock_gettime(Process::CLOCK_MONOTONIC)
16
16
  _orig_log_connection_yield(*args, &block)
17
17
  ensure
18
- ActiveSupport::Notifications.instrument('duration.sequel', durationInSeconds: Time.now - start)
18
+ end_time = Process.clock_gettime(Process::CLOCK_MONOTONIC)
19
+ ActiveSupport::Notifications.instrument('duration.sequel', durationInSeconds: end_time - start_time)
19
20
  end
20
21
  end
21
22
 
@@ -25,10 +26,11 @@ Sequel::Database.class_eval do
25
26
 
26
27
  def log_yield(*args, &block)
27
28
  begin
28
- start = Time.now
29
+ start_time = Process.clock_gettime(Process::CLOCK_MONOTONIC)
29
30
  _orig_log_yield(*args, &block)
30
31
  ensure
31
- ActiveSupport::Notifications.instrument('duration.sequel', durationInSeconds: Time.now - start)
32
+ end_time = Process.clock_gettime(Process::CLOCK_MONOTONIC)
33
+ ActiveSupport::Notifications.instrument('duration.sequel', durationInSeconds: end_time - start_time)
32
34
  end
33
35
  end
34
36
 
@@ -27,7 +27,7 @@ module TimeBandits
27
27
  protected
28
28
 
29
29
  def call_app(request, env)
30
- start_time = Time.now
30
+ start_time = Process.clock_gettime(Process::CLOCK_MONOTONIC)
31
31
  start(request, start_time)
32
32
  resp = @app.call(env)
33
33
  resp[2] = ::Rack::BodyProxy.new(resp[2]) { finish(request) }
@@ -36,12 +36,13 @@ module TimeBandits
36
36
  finish(request)
37
37
  raise
38
38
  ensure
39
- completed(request, (Time.now - start_time) * 1000, resp)
39
+ end_time = Process.clock_gettime(Process::CLOCK_MONOTONIC)
40
+ completed(request, (end_time - start_time) * 1000, resp)
40
41
  ActiveSupport::LogSubscriber.flush_all!
41
42
  end
42
43
 
43
44
  # Started GET "/session/new" for 127.0.0.1 at 2012-09-26 14:51:42 -0700
44
- def started_request_message(request, start_time=Time.now)
45
+ def started_request_message(request, start_time = Time.now)
45
46
  'Started %s "%s" for %s at %s' % [
46
47
  request.request_method,
47
48
  request.filtered_path,
@@ -16,7 +16,7 @@ module TimeBandits
16
16
  def request(event)
17
17
  i = Redis.instance
18
18
  i.time += event.duration
19
- i.calls += 1 #count redis round trips, not calls
19
+ i.calls += 1 # count redis round trips, not calls
20
20
 
21
21
  return unless logger.debug?
22
22
 
@@ -1,3 +1,3 @@
1
1
  module TimeBandits
2
- VERSION = "0.12.5"
2
+ VERSION = "0.13.0"
3
3
  end
@@ -54,10 +54,10 @@ class RedisTest < Test::Unit::TestCase
54
54
  private
55
55
  def pipelined_work(type = :pipelined)
56
56
  TimeBandits.reset
57
- @redis.send(type) do
58
- @redis.get("foo")
59
- @redis.set("bar", 1)
60
- @redis.hgetall("baz")
57
+ @redis.send(type) do |transaction|
58
+ transaction.get("foo")
59
+ transaction.set("bar", 1)
60
+ transaction.hgetall("baz")
61
61
  end
62
62
  end
63
63
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: time_bandits
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.5
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefan Kaes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-12 00:00:00.000000000 Z
11
+ date: 2022-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thread_variables
@@ -230,6 +230,7 @@ files:
230
230
  - ".github/workflows/run-tests.yml"
231
231
  - ".gitignore"
232
232
  - Appraisals
233
+ - CHANGELOG.md
233
234
  - Gemfile
234
235
  - LICENSE.txt
235
236
  - README.md
@@ -288,7 +289,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
288
289
  - !ruby/object:Gem::Version
289
290
  version: '0'
290
291
  requirements: []
291
- rubygems_version: 3.2.33
292
+ rubygems_version: 3.3.19
292
293
  signing_key:
293
294
  specification_version: 4
294
295
  summary: Custom performance logging for Rails