rack-mini-profiler 3.1.0 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +19 -1
- data/README.md +1 -1
- data/lib/html/includes.js +5 -7
- data/lib/html/includes.tmpl +1 -1
- data/lib/html/speedscope/{import.cf0fa83f.js → import.8ae8aa3d.js} +26 -18
- data/lib/html/speedscope/index.html +1 -1
- data/lib/html/speedscope/release.txt +3 -3
- data/lib/html/speedscope/{speedscope.44364064.js → speedscope.f27db165.js} +99 -106
- data/lib/html/vendor.js +1 -1
- data/lib/mini_profiler/actions.rb +152 -0
- data/lib/mini_profiler/asset_version.rb +1 -1
- data/lib/mini_profiler/profiling_methods.rb +4 -0
- data/lib/mini_profiler/storage/memcache_store.rb +9 -0
- data/lib/mini_profiler/storage/memory_store.rb +2 -2
- data/lib/mini_profiler/timer_struct/request.rb +6 -0
- data/lib/mini_profiler/timer_struct/sql.rb +3 -1
- data/lib/mini_profiler/version.rb +1 -1
- data/lib/mini_profiler/views.rb +192 -0
- data/lib/mini_profiler.rb +55 -348
- data/lib/mini_profiler_rails/railtie.rb +12 -1
- data/lib/mini_profiler_rails/railtie_methods.rb +1 -1
- data/lib/patches/sql_patches.rb +2 -2
- data/rack-mini-profiler.gemspec +1 -1
- metadata +8 -6
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack-mini-profiler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Saffron
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2023-
|
13
|
+
date: 2023-12-06 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rack
|
@@ -286,14 +286,15 @@ files:
|
|
286
286
|
- lib/html/speedscope/fonts/source-code-pro-regular.css
|
287
287
|
- lib/html/speedscope/fonts/source-code-pro-v13-regular.woff
|
288
288
|
- lib/html/speedscope/fonts/source-code-pro-v13-regular.woff2
|
289
|
-
- lib/html/speedscope/import.
|
289
|
+
- lib/html/speedscope/import.8ae8aa3d.js
|
290
290
|
- lib/html/speedscope/index.html
|
291
291
|
- lib/html/speedscope/release.txt
|
292
292
|
- lib/html/speedscope/reset.8c46b7a1.css
|
293
293
|
- lib/html/speedscope/source-map.438fa06b.js
|
294
|
-
- lib/html/speedscope/speedscope.
|
294
|
+
- lib/html/speedscope/speedscope.f27db165.js
|
295
295
|
- lib/html/vendor.js
|
296
296
|
- lib/mini_profiler.rb
|
297
|
+
- lib/mini_profiler/actions.rb
|
297
298
|
- lib/mini_profiler/asset_version.rb
|
298
299
|
- lib/mini_profiler/client_settings.rb
|
299
300
|
- lib/mini_profiler/config.rb
|
@@ -315,6 +316,7 @@ files:
|
|
315
316
|
- lib/mini_profiler/timer_struct/request.rb
|
316
317
|
- lib/mini_profiler/timer_struct/sql.rb
|
317
318
|
- lib/mini_profiler/version.rb
|
319
|
+
- lib/mini_profiler/views.rb
|
318
320
|
- lib/mini_profiler_rails/railtie.rb
|
319
321
|
- lib/mini_profiler_rails/railtie_methods.rb
|
320
322
|
- lib/patches/db/activerecord.rb
|
@@ -351,14 +353,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
351
353
|
requirements:
|
352
354
|
- - ">="
|
353
355
|
- !ruby/object:Gem::Version
|
354
|
-
version: 2.
|
356
|
+
version: 2.7.0
|
355
357
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
356
358
|
requirements:
|
357
359
|
- - ">="
|
358
360
|
- !ruby/object:Gem::Version
|
359
361
|
version: '0'
|
360
362
|
requirements: []
|
361
|
-
rubygems_version: 3.4.
|
363
|
+
rubygems_version: 3.4.10
|
362
364
|
signing_key:
|
363
365
|
specification_version: 4
|
364
366
|
summary: Profiles loading speed for rack applications.
|