ruby-prof 1.6.3-x64-mingw-ucrt → 1.7.0-x64-mingw-ucrt
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES +7 -0
- data/ext/ruby_prof/rp_allocation.c +342 -342
- data/ext/ruby_prof/rp_call_tree.c +1 -1
- data/ext/ruby_prof/rp_call_tree.h +1 -1
- data/ext/ruby_prof/rp_call_trees.c +2 -2
- data/ext/ruby_prof/rp_call_trees.h +2 -2
- data/ext/ruby_prof/rp_measure_allocations.c +1 -1
- data/ext/ruby_prof/rp_measure_memory.c +46 -46
- data/ext/ruby_prof/rp_measure_process_time.c +1 -1
- data/ext/ruby_prof/rp_measure_wall_time.c +1 -1
- data/ext/ruby_prof/rp_measurement.c +364 -364
- data/ext/ruby_prof/rp_method.c +24 -12
- data/ext/ruby_prof/rp_method.h +5 -2
- data/ext/ruby_prof/rp_profile.c +2 -2
- data/ext/ruby_prof/rp_profile.h +36 -36
- data/ext/ruby_prof/rp_stack.c +1 -1
- data/ext/ruby_prof/rp_thread.c +1 -1
- data/ext/ruby_prof/ruby_prof.c +1 -1
- data/ext/ruby_prof/ruby_prof.h +34 -34
- data/ext/ruby_prof/vc/ruby_prof.vcxproj +5 -7
- data/lib/3.2/ruby_prof.so +0 -0
- data/lib/3.3/ruby_prof.so +0 -0
- data/lib/ruby-prof/compatibility.rb +10 -10
- data/lib/ruby-prof/exclude_common_methods.rb +9 -3
- data/lib/ruby-prof/method_info.rb +87 -85
- data/lib/ruby-prof/version.rb +1 -1
- data/ruby-prof.gemspec +1 -1
- data/test/crash2.rb +144 -0
- data/test/enumerable_test.rb +5 -5
- data/test/exclude_methods_test.rb +197 -86
- data/test/line_number_test.rb +254 -99
- data/test/measure_allocations_test.rb +422 -1
- data/test/measure_memory_test.rb +433 -1
- data/test/measure_process_time_test.rb +882 -15
- data/test/measure_wall_time_test.rb +195 -47
- data/test/method_info_test.rb +1 -1
- data/test/recursive_test.rb +198 -1
- data/test/thread_test.rb +0 -4
- metadata +7 -6
- data/lib/3.1/ruby_prof.so +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 198226d7967ceb0af37f6dc43d890354c521474b7f02fe1d19a866053f869ef2
|
4
|
+
data.tar.gz: 52d7b29fc8bf481c97a8bef077a3129b36e6193b3ac0be25cb23f2f93ad8c398
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29d57e83c9371e760440cedd04e654d39a59e79c7f5371016b6d0d7437a74f1a9834c1fe6608c150a6969841e261b4ad5b8a0c3d9f95f2118426fdaae4ccd762
|
7
|
+
data.tar.gz: c315879411b1f27a291ed3a94a59911f3cd38c2b063cf6176238fe350776cec8c92e35a0d6f5dcfb6188ead64c294dc960eb368d793479278c41c2921b4750e6
|
data/CHANGES
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
1.7.0 (2024-01-07)
|
2
|
+
=====================
|
3
|
+
* Add support for ruby 3.3.* (Charlie Savage)
|
4
|
+
* Remove support for ruby 2.7.* (Charlie Savage)
|
5
|
+
* Fix crash caused by referencing Profile Ruby objects from Method objects that were being moved
|
6
|
+
by GC compaction (Charlie Savage)
|
7
|
+
|
1
8
|
1.6.3 (2023-04-20)
|
2
9
|
=====================
|
3
10
|
* Remove debug code unintentionally left in ruby-prof command line program (Charlie Savage)
|