perftools.rb 2.0.4 → 2.0.5
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/ext/extconf.rb +1 -1
- data/perftools.rb.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65a78368c38667e5f747aa6be09bb5e39c56a71e
|
4
|
+
data.tar.gz: 1e0aa76503ac5e47102a84499ec37074d56964fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b53a3e696dea1041969fb561d5c6be5b21f8243508bc96d43fbce83efc8988d2d8d4bc4825cc1f72f828f3202cb53436bb76d99f43cf350fc947236fa9fe8df
|
7
|
+
data.tar.gz: 8863907921d826aba09ff9ba0d782d3737e436ea002b16a60877d22b11c1924fe870b71b34317c670576205b7e0d253f48d253aac59d1352179a9dc8960b4a6e
|
data/ext/extconf.rb
CHANGED
@@ -116,7 +116,7 @@ if RUBY_VERSION >= "1.9"
|
|
116
116
|
hdrs = proc {
|
117
117
|
have_header("method.h") # exists on 1.9.2
|
118
118
|
have_header("vm_core.h") and
|
119
|
-
have_header("iseq.h") and
|
119
|
+
(have_header("iseq.h") or have_header("iseq.h", ["vm_core.h"])) and
|
120
120
|
have_header("insns.inc") and
|
121
121
|
have_header("insns_info.inc")
|
122
122
|
}
|
data/perftools.rb.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
spec = Gem::Specification.new do |s|
|
2
2
|
s.name = 'perftools.rb'
|
3
|
-
s.version = '2.0.
|
3
|
+
s.version = '2.0.5'
|
4
4
|
s.rubyforge_project = 'perftools-rb'
|
5
5
|
s.summary = 'gperftools for ruby code'
|
6
6
|
s.description = 'A sampling profiler for ruby code based on patches to gperftools'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: perftools.rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aman Gupta
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A sampling profiler for ruby code based on patches to gperftools
|
14
14
|
email: perftools@tmm1.net
|
@@ -53,8 +53,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
53
|
version: '0'
|
54
54
|
requirements: []
|
55
55
|
rubyforge_project: perftools-rb
|
56
|
-
rubygems_version: 2.
|
56
|
+
rubygems_version: 2.4.5.1
|
57
57
|
signing_key:
|
58
58
|
specification_version: 4
|
59
59
|
summary: gperftools for ruby code
|
60
60
|
test_files: []
|
61
|
+
has_rdoc: false
|