ruby-prof 1.7.0-x64-mingw-ucrt → 1.7.1-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 +4 -0
- data/ext/ruby_prof/rp_method.c +2 -13
- data/lib/3.3/ruby_prof.so +0 -0
- data/lib/ruby-prof/version.rb +1 -1
- data/ruby-prof.gemspec +1 -0
- metadata +18 -5
- 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
data/ext/ruby_prof/rp_method.c
CHANGED
@@ -101,19 +101,8 @@ VALUE resolve_klass_name(VALUE klass, unsigned int* klass_flags)
|
|
101
101
|
|
102
102
|
st_data_t method_key(VALUE klass, VALUE msym)
|
103
103
|
{
|
104
|
-
|
105
|
-
|
106
|
-
/* Is this an include for a module? If so get the actual
|
107
|
-
module class since we want to combine all profiling
|
108
|
-
results for that module. */
|
109
|
-
if (klass == 0 || klass == Qnil)
|
110
|
-
{
|
111
|
-
resolved_klass = Qnil;
|
112
|
-
}
|
113
|
-
else if (BUILTIN_TYPE(klass) == T_ICLASS)
|
114
|
-
{
|
115
|
-
resolved_klass = RBASIC_CLASS(klass);
|
116
|
-
}
|
104
|
+
unsigned int klass_flags = 0;
|
105
|
+
VALUE resolved_klass = resolve_klass(klass, &klass_flags);
|
117
106
|
|
118
107
|
st_data_t hash = rb_hash_start(0);
|
119
108
|
hash = rb_hash_uint(hash, resolved_klass);
|
data/lib/3.3/ruby_prof.so
CHANGED
Binary file
|
data/lib/ruby-prof/version.rb
CHANGED
data/ruby-prof.gemspec
CHANGED
@@ -59,6 +59,7 @@ EOF
|
|
59
59
|
spec.required_ruby_version = '>= 3.0.0'
|
60
60
|
spec.date = Time.now.strftime('%Y-%m-%d')
|
61
61
|
spec.homepage = 'https://github.com/ruby-prof/ruby-prof'
|
62
|
+
spec.add_development_dependency("base64")
|
62
63
|
spec.add_development_dependency('minitest')
|
63
64
|
spec.add_development_dependency('rake-compiler')
|
64
65
|
end
|
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-prof
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.1
|
5
5
|
platform: x64-mingw-ucrt
|
6
6
|
authors:
|
7
7
|
- Shugo Maeda, Charlie Savage, Roger Pack, Stefan Kaes
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: base64
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: minitest
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,7 +97,6 @@ files:
|
|
83
97
|
- ext/ruby_prof/ruby_prof.h
|
84
98
|
- ext/ruby_prof/vc/ruby_prof.sln
|
85
99
|
- ext/ruby_prof/vc/ruby_prof.vcxproj
|
86
|
-
- lib/3.2/ruby_prof.so
|
87
100
|
- lib/3.3/ruby_prof.so
|
88
101
|
- lib/ruby-prof.rb
|
89
102
|
- lib/ruby-prof/assets/call_stack_printer.html.erb
|
@@ -169,7 +182,7 @@ metadata:
|
|
169
182
|
bug_tracker_uri: https://github.com/ruby-prof/ruby-prof/issues
|
170
183
|
changelog_uri: https://github.com/ruby-prof/ruby-prof/blob/master/CHANGES
|
171
184
|
documentation_uri: https://ruby-prof.github.io/
|
172
|
-
source_code_uri: https://github.com/ruby-prof/ruby-prof/tree/v1.7.
|
185
|
+
source_code_uri: https://github.com/ruby-prof/ruby-prof/tree/v1.7.1
|
173
186
|
post_install_message:
|
174
187
|
rdoc_options: []
|
175
188
|
require_paths:
|
@@ -185,7 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
185
198
|
- !ruby/object:Gem::Version
|
186
199
|
version: '0'
|
187
200
|
requirements: []
|
188
|
-
rubygems_version: 3.5.
|
201
|
+
rubygems_version: 3.5.16
|
189
202
|
signing_key:
|
190
203
|
specification_version: 4
|
191
204
|
summary: Fast Ruby profiler
|
data/lib/3.2/ruby_prof.so
DELETED
Binary file
|