ruby-prof 1.6.3 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- 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/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 +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f40a85c075fc8776559aecc558adf70e1e5c402e38edc463784658bb881e8612
|
4
|
+
data.tar.gz: c41f3e88dfdb16a8717899f21cf0064265186513fad685ed67b493752e182f86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c32318e39c2db99f0581a283c8dfd2742eb3f19ffd6e115e90b45d26ddbefdc2a3827be06874ec56f52478f0ca6d709006e4314e38d7dcf5676c5d9ed801051b
|
7
|
+
data.tar.gz: 27d6dd29863604626eab6d27a8471e5feee6660739568e334c04b9b79aa153933945436a1a1a9b9ddc7cfd4e53d8240032f4b94fd552a5c4dd565e0a5cb81395
|
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)
|