ruby-prof 1.6.3-x64-mingw-ucrt → 1.7.1-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES +11 -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 +26 -25
- 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.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 +2 -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 +21 -7
- data/lib/3.1/ruby_prof.so +0 -0
- data/lib/3.2/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: ba9fdbefdcab7553104af5763078c46cd88ed39982ea198845adeb2f90548e21
|
4
|
+
data.tar.gz: 3b1cfbcaceea7fabcdc397c4902e945b652b743e136448832f6ea754391f39db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7afa2075057d5a428b3508ad089f095c5d0a9d8eb7f8889e4cfbd883364784f1e699aee368676e5cd5be6002865cc142a7a8477f6f02a5dc491fe5433af0b496
|
7
|
+
data.tar.gz: 0e7d856d100cc275a606d5192f181a6879de9e4631bfa479daff39e40f812784e9f516ec6c153edc6a69ce670c9254a1037d7037e2bf707669f62b469231dd1b
|
data/CHANGES
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
1.7.1 (2024-10-19)
|
2
|
+
=====================
|
3
|
+
* Fix crashes when calling merge due to inconsistent method keys (Chris Heald)
|
4
|
+
|
5
|
+
1.7.0 (2024-01-07)
|
6
|
+
=====================
|
7
|
+
* Add support for ruby 3.3.* (Charlie Savage)
|
8
|
+
* Remove support for ruby 2.7.* (Charlie Savage)
|
9
|
+
* Fix crash caused by referencing Profile Ruby objects from Method objects that were being moved
|
10
|
+
by GC compaction (Charlie Savage)
|
11
|
+
|
1
12
|
1.6.3 (2023-04-20)
|
2
13
|
=====================
|
3
14
|
* Remove debug code unintentionally left in ruby-prof command line program (Charlie Savage)
|