perftools.rb 0.3.8 → 0.3.9
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/perftools.c +1 -1
- data/perftools.rb.gemspec +1 -1
- metadata +2 -2
data/ext/perftools.c
CHANGED
@@ -11,7 +11,7 @@ static VALUE I__send__;
|
|
11
11
|
static VALUE Isend;
|
12
12
|
|
13
13
|
#define SAVE_FRAME() \
|
14
|
-
if (method && method != I__send__ &&
|
14
|
+
if (method && method != I__send__ && method != Isend) { \
|
15
15
|
if (self && FL_TEST(klass, FL_SINGLETON) && (BUILTIN_TYPE(self) == T_CLASS || BUILTIN_TYPE(self) == T_MODULE)) \
|
16
16
|
result[depth++] = (void*) self; \
|
17
17
|
else \
|
data/perftools.rb.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: perftools.rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aman Gupta
|
@@ -60,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
60
|
requirements: []
|
61
61
|
|
62
62
|
rubyforge_project: perftools-rb
|
63
|
-
rubygems_version: 1.3.
|
63
|
+
rubygems_version: 1.3.5
|
64
64
|
signing_key:
|
65
65
|
specification_version: 3
|
66
66
|
summary: google-perftools for ruby code
|