time_bandits 0.12.4 → 0.12.7

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: 9824d9fcd5eef40eebbf628d042f34604f310e563570c62e488bb8084533f24a
4
- data.tar.gz: c7bc40bcbce473400e9216268bf2abc10f7c1d6fbfc0ac90305bfaba444e8706
3
+ metadata.gz: 4b8b86f7d1fd439347f33ce1a814afe78f6bb4b81f287821d1cafa710d685cc7
4
+ data.tar.gz: bd4914bd9edc10e9af70e9d642de6f4f29a6718f2405121f1d7e64155e90920b
5
5
  SHA512:
6
- metadata.gz: 3d78ca08b9d112fd2e4365b7df522badce8e57965d469dac2cf65c5ea51753078021729e066d798781e040140e306af4f274fed6da4b9246a7866c44bff6fb92
7
- data.tar.gz: 1ac34b522398bdf6419a53e28fd068e434cc538c669160cc423a8a9590443724e1d7acfe4ecb40fe50f2268c1c30f8882e137e5907c6e66ac960e64d8023ae97
6
+ metadata.gz: 2be85317edc8af9c48c7aa319c6725bc1fad3f734190a83742995926c9bb90f82ce88d2c9f87abea92c6e96f85235176a896ea7449fd8ed03615dd7c2ae85a57
7
+ data.tar.gz: 7566807416012598e58e9528a8196fba0bfefa9841a32052792a23070b9cae8e98844455f73edd25644ec09eca12f3e4a895010347724e5cc9fffd184f9f7413
@@ -13,7 +13,7 @@ jobs:
13
13
 
14
14
  strategy:
15
15
  matrix:
16
- ruby-version: [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,10 +1,10 @@
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.0" 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
10
  appraise "activesupport-#{rails_version}" do
data/CHANGELOG.md ADDED
@@ -0,0 +1,321 @@
1
+ # CHANGELOG
2
+
3
+ ## Version 0.12.6
4
+ * logging start time requires a real time, not a monotonic clock
5
+
6
+ ## Version 0.12.6
7
+ * use ruby 3.1.1 in GitHub actions
8
+ * updated appraisals
9
+ * restrict Redis gem to a version before 5.0 until 5.x has become
10
+ stable
11
+ * use monotonic clocks for time measurements
12
+
13
+ ## Version 0.12.5
14
+ * use GC.stat(:malloc_increase_bytes) to measure allocated bytes as fallback
15
+ * support ruby 3.1.0 GC.total_time
16
+ * ruby 3.1.0 needs rails 7.0.1 to run the tests
17
+ * include ruby-3.1.0 on GitHub actions
18
+
19
+ ## Version 0.12.4
20
+ * rails 7.0.0 compatibility
21
+ * only test Rails 3.0.0 with Ruby >= 2.7.0
22
+ * updated Appraisals
23
+ * use safe ruby version to run tests on GitHub
24
+ * switched to GitHub actions (#19)
25
+ * try to fix travis
26
+ * updated appraisals
27
+ * remove gemfiles created by appraisals and git ignore them
28
+
29
+ ## Version 0.12.3
30
+ * relax minitest dependency
31
+ * suppress Ruby 2.7 warnings in action controller tests
32
+ * updated test container versions
33
+
34
+ ## Version 0.12.2
35
+ * fixed that completed line was logged twice in Rails test environment
36
+ * split license into separate file
37
+ * added travis badge
38
+
39
+ ## Version 0.12.1
40
+ * install GC time bandit automatically inRails applications
41
+ * only load railtie if class Rails::Railtie is defined
42
+
43
+ ## Version 0.12.0
44
+ * removed leftover from old Rails plugin times
45
+ * don't need sudo on travis
46
+ * Merge pull request #15 from toy/patch-1
47
+ * try to fix travis build
48
+ * doc rephrasing
49
+ * updated README
50
+ * relax active support version requirement to 5.2.0
51
+ * updated travis build matrix
52
+ * dropped support for old rails and ruby versions
53
+ * silence ruby warnings
54
+ * updated docker images
55
+ * require at least version 5.2.4.3 for activesupport
56
+ * updated appraisals to only test supported Rails versions
57
+ * damn travis
58
+ * travis fu
59
+ * updated ruby versions
60
+ * trying to fix travis
61
+
62
+ ## Version 0.11.0
63
+ * added and updated appraisals
64
+ * support rails 6
65
+ * Add changelog url to gemspec
66
+
67
+ ## Version 0.10.12
68
+ * updated README
69
+ * also support future 5.0.x versions
70
+ * added appraisal for rails 5.0.7
71
+ * Merge pull request #14 from mediafinger/master
72
+ * Call type_casted_binds with only one argument in Rails 5.0.7
73
+
74
+ ## Version 0.10.11
75
+ * prepare 0.10.11 release
76
+ * clarified how TimeBanditry gets activated in railtie
77
+ * test rails 5.2.0 compatibility
78
+ * Merge pull request #13 from sghosh23/update_rails_version_active_record_monkey_patch
79
+ * add rails version 5.2 to support active record monkey patch
80
+ * fix test failures on ActiveRecord 4.1.16
81
+ * reinstalled appraisals
82
+ * try to fix travis builds
83
+
84
+ ## Version 0.10.10
85
+ * make sure sql method can be executed on logsubscriber
86
+ * updated appraisals
87
+
88
+ ## Version 0.10.8
89
+ * added specialized activerecord logging for Rails >= 5.1.5
90
+
91
+ ## Version 0.10.8
92
+ * rails has changed render_bind in 5.0.3
93
+ * updated README
94
+ * added rabbitmq as a service for travis
95
+ * added more rails versions to test against
96
+ * abort rake task when system calls fail
97
+ * fixed deprecation warning for ruby 2.4.1
98
+
99
+ ## Version 0.10.7
100
+ * changed README format to markdown
101
+ * Merge pull request #11 from manveru/patch-1
102
+ * Adapt log_sql_statement for Rails 5.1
103
+ * changed travis command
104
+
105
+ ## Version 0.10.6
106
+ * updated reales notes
107
+ * Merge pull request #9 from pinglamb/master
108
+ * added .travis.yml
109
+ * updated rails versions for appraisals
110
+
111
+ ## Version 0.10.5
112
+ * make activerecord monkey patch available for rails 5.1
113
+
114
+ ## Version 0.10.4
115
+ * protect against Rails 5 firing on_load handlers multiple times
116
+
117
+ ## Version 0.10.3
118
+ * fixed activerecord logging monkey patch
119
+
120
+ ## Version 0.10.2
121
+ * go back to using alias_method to enable testing with rspec
122
+
123
+ ## Version 0.10.1
124
+ * fixed broken module.prepend
125
+
126
+ ## Version 0.10.0
127
+ * updated release notes
128
+ * rebased on master
129
+ * added docker compose file to start redis, memcached, mysql and rabbitmq for testing
130
+ * added rails 5 to appraisals
131
+ * active record log subscriber changes to support rails 5
132
+ * checked and updated action controller hacks for rails 5
133
+ * rails 5 fixed the memcache store stats bug on fetch
134
+ * rails 5 deprecated alias_method_chain, used Module.prepend instead
135
+ * rails 5 deprecated string values for middlewares
136
+
137
+ ## Version 0.9.2
138
+ * fixed sequel gem monkey patch
139
+ * I really hate the stupid decision by rake to force ruby -w on everyone
140
+ * updated rails versions in appraisals
141
+
142
+ ## Version 0.9.1
143
+ * redis time consumer: make sure to log ASCII in debug mode
144
+
145
+ ## Version 0.9.0
146
+ * added beetle time consumer
147
+ * Multiply 1000 to get the actual millisecond
148
+
149
+ ## Version 0.8.1
150
+ * make sure every consumer has a current_runtime methods (duh)
151
+
152
+ ## Version 0.8.0
153
+ * access current database runtime including not yet consumed time
154
+
155
+ ## Version 0.7.4
156
+ * fixed that actions without render showed zero db time
157
+ * removed .lock files
158
+ * use appraisal for testing against multiple active support versions
159
+ * test with rails 4.2.4
160
+
161
+ ## Version 0.7.3
162
+ * in rails 4.2 dalli is always instrumented
163
+ * monkey patches seem to be compatible with rails 4.2
164
+
165
+ ## Version 0.7.2
166
+ * updated to support ruby 2.2.0
167
+
168
+ ## Version 0.7.1
169
+ * style change
170
+ * updated README
171
+ * measure time and calls with sequel
172
+
173
+ ## Version 0.7.0
174
+ * make the most out of an unpatched ruby
175
+
176
+ ## Version 0.6.7
177
+ * fixed wrong nesting of public :sql
178
+
179
+ ## Version 0.6.6
180
+ * fixed duplicate log lines for active record monkey patch and rails 4.1
181
+ * Count redis round trips not calls
182
+
183
+ ## Version 0.6.5
184
+ * rails monkey patches are compatible with 4.1
185
+
186
+ ## Version 0.6.4
187
+ * make sure not to call 'instrument=' if a rails 4 app uses :dalli_store instead of :mem_cache_store
188
+
189
+ ## Version 0.6.3
190
+ * rails 3.2 columns don't understand binary?
191
+
192
+ ## Version 0.6.2
193
+ * rails 4.0 updates to active_record monkey_patch
194
+
195
+ ## Version 0.6.1
196
+ * support for ruby 2.1
197
+ * added test for GC time consumer
198
+
199
+ ## Version 0.6.0
200
+ * updated README
201
+ * added tests for dalli and redis and new completed line behavior
202
+ * patched dalli consumer to work correctly with rails 4
203
+ * added redis time consumer
204
+ * don't include bandits in the the completed line which haven't measured anything
205
+
206
+ ## Version 0.5.1
207
+ * added license information to gemspec
208
+
209
+ ## Version 0.5.0
210
+ * ugly hack to ensure Completed lines are logged in the test environment
211
+ * reset time bandits before running controller tests
212
+ * renamed RailsCache consumer to dalli and rely on dalli for logging
213
+ * avoid calling logger in production
214
+ * install some gems for debugging
215
+ * updated README
216
+ * we're all milliseconds now
217
+ * we are thread safe now. lose the Rack::Lock middleware
218
+ * drop rails 2 support
219
+ * switch database consumer to use base_consumer
220
+ * added a general rails cache consumer (can be used to replace memcache consumers)
221
+ * make memcache consumers threadsafe
222
+ * use structs instead of hashes for counters
223
+ * more groundwork for thread safe time bandits
224
+ * added some tests
225
+
226
+ ## Version 0.4.1
227
+ * added rake dev dependency
228
+ * we can't rely on Rack::Sendfile to be around
229
+
230
+ ## Version 0.4.0
231
+ * rails 4.0 and tagged logging support
232
+
233
+ ## Version 0.3.1
234
+ * need to call TimeBandits.consumed to get correct db time stats
235
+
236
+ ## Version 0.3.0
237
+ * use thread local variables gem
238
+ * make use of thread_local_variable_access gem
239
+
240
+ ## Version 0.2.2
241
+ * enable GC stats after passenger has forked a new worker process
242
+ * reset time bandits after rails initialization process has been completed
243
+
244
+ ## Version 0.2.1
245
+ * use the correct rails version specific code to extract raw_payload
246
+
247
+ ## Version 0.2.0
248
+ * basic rails 3.1 and 32. compatibility
249
+
250
+ ## Version 0.1.4
251
+ * fixed bug related to mixing seconds and millicesonds
252
+
253
+ ## Version 0.1.3
254
+ * db time is already measured in milliseconds
255
+
256
+ ## Version 0.1.2
257
+ * the Rails 3 database consumer no longer uses instance variables for the statistics
258
+
259
+ ## Version 0.1.1
260
+ * use own middlware logger and provide viewtime and action for logjam_agent
261
+
262
+ ## Version 0.1.0
263
+ * ignore some files
264
+ * the version numbering is ridiculous
265
+ * add a bit of backtrace info
266
+ * removed last traces of agent suport
267
+ * provide metrics for rack middlewares
268
+ * metrics for rails2 database adapter
269
+ * improved metrics for memcached
270
+
271
+ ## Version 0.0.9
272
+
273
+ * Relax Rails version check, still running fine on 2.3.14
274
+ * metrics agent support for rails 2
275
+
276
+ ## Version 0.0.8
277
+ * gem compatibility for rails 2.3.x
278
+ * updated README
279
+
280
+ ## Version 0.0.7
281
+ * git ignore the Gemfile.lock
282
+ * Assume status 500 in case of an exception being raised
283
+ * Fail gracefully if an exception occurs during before_dispatch
284
+
285
+ ## Version 0.0.6
286
+ * updated gemspec to pin to the right branch on github
287
+
288
+ ## Version 0.0.5
289
+ * prepare new version (now with activerecord support)
290
+ * updated readme
291
+ * database consumer is now thread safe
292
+ * initial version of ActiveRecord time consumer
293
+
294
+
295
+ ## Version 0.0.4
296
+ * oh man. concentrate!
297
+
298
+ ## Version 0.0.3
299
+ * oops
300
+
301
+ ## Version 0.0.2
302
+ * refactored rack logger
303
+
304
+ ## Version 0.0.1
305
+ * now a proper rails3 gem plugin
306
+ * removed log ouput
307
+ * don't install time bandits per default (app needs control over order of bandits in completed line)
308
+ * use the more accurate timing info
309
+ * Merge branch 'master' into rails3
310
+ * deleted unused file
311
+ * Merge branch 'master' into rails3
312
+ * checked in some xing modifications
313
+ * first stab at supporting rails3
314
+ * JRuby support for GC and memory statistics, using the jmx gem.
315
+ * during initialization, enable memcache and GC stats if they are available
316
+ * we are compatible to activerecord 2.3.5
317
+ * Merge branch 'master' of github.com:skaes/time_bandits
318
+ * time bandits registration interface changed and got a new method for creating log lines outside ActionController
319
+ * added Rakefile with rdoc task
320
+ * removed Rakefile
321
+ * initial import
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
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
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
-
@@ -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,
@@ -29,6 +29,8 @@ module TimeBandits
29
29
 
30
30
  if GC.respond_to?(:time)
31
31
  def _get_gc_time; GC.time; end
32
+ elsif GC.respond_to?(:total_time)
33
+ def _get_gc_time; GC.total_time / 1000; end
32
34
  else
33
35
  def _get_gc_time; 0; end
34
36
  end
@@ -40,7 +42,8 @@ module TimeBandits
40
42
  if GC.respond_to?(:total_malloced_bytes)
41
43
  def _get_allocated_size; GC.total_malloced_bytes; end
42
44
  else
43
- def _get_allocated_size; 0; end
45
+ # this will wrap around :malloc_increase_bytes_limit so is not really correct
46
+ def _get_allocated_size; GC.stat(:malloc_increase_bytes); end
44
47
  end
45
48
 
46
49
  if GC.respond_to?(:heap_slots)
@@ -81,7 +84,9 @@ module TimeBandits
81
84
  end
82
85
 
83
86
  def allocated_size
84
- _get_allocated_size - @allocated_size
87
+ new_size = _get_allocated_size
88
+ old_size = @allocated_size
89
+ new_size <= old_size ? new_size : new_size - old_size
85
90
  end
86
91
 
87
92
  def heap_growth
@@ -1,3 +1,3 @@
1
1
  module TimeBandits
2
- VERSION = "0.12.4"
2
+ VERSION = "0.12.7"
3
3
  end
data/time_bandits.gemspec CHANGED
@@ -33,7 +33,7 @@ Gem::Specification.new do |s|
33
33
  s.add_development_dependency("mocha")
34
34
  s.add_development_dependency("mysql2")
35
35
  s.add_development_dependency("rake")
36
- s.add_development_dependency("redis")
36
+ s.add_development_dependency("redis", "< 5.0")
37
37
  s.add_development_dependency("sequel")
38
38
  s.add_development_dependency("activerecord")
39
39
  s.add_development_dependency("beetle", ">= 3.4.1")
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.4
4
+ version: 0.12.7
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-02 00:00:00.000000000 Z
11
+ date: 2022-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thread_variables
@@ -168,16 +168,16 @@ dependencies:
168
168
  name: redis
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
- - - ">="
171
+ - - "<"
172
172
  - !ruby/object:Gem::Version
173
- version: '0'
173
+ version: '5.0'
174
174
  type: :development
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
- - - ">="
178
+ - - "<"
179
179
  - !ruby/object:Gem::Version
180
- version: '0'
180
+ version: '5.0'
181
181
  - !ruby/object:Gem::Dependency
182
182
  name: sequel
183
183
  requirement: !ruby/object:Gem::Requirement
@@ -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