heap_dump 0.0.30 → 0.0.31
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/heap_dump/heap_dump.c +2 -1
- data/heap_dump.gemspec +1 -1
- data/lib/heap_dump/version.rb +1 -1
- metadata +6 -3
data/ext/heap_dump/heap_dump.c
CHANGED
@@ -1588,7 +1588,8 @@ static int dump_global_tbl_entry(ID key, struct rb_global_entry* ge/*st_data_t v
|
|
1588
1588
|
|
1589
1589
|
|
1590
1590
|
#include <stdarg.h>
|
1591
|
-
|
1591
|
+
|
1592
|
+
static int g_verbose = false;
|
1592
1593
|
static int log_printf(const char* format, ...){
|
1593
1594
|
int res = 0;
|
1594
1595
|
va_list list;
|
data/heap_dump.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
|
|
15
15
|
gem.require_paths = ["lib"]
|
16
16
|
gem.version = HeapDump::VERSION
|
17
17
|
|
18
|
-
gem.required_ruby_version = '
|
18
|
+
gem.required_ruby_version = ['>=1.9.2', '<=2.0.0']
|
19
19
|
#gem.platform = Gem::Platform::CURRENT # other than osx - maybe later
|
20
20
|
|
21
21
|
gem.extensions = "ext/heap_dump/extconf.rb"
|
data/lib/heap_dump/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: heap_dump
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.31
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-11-
|
12
|
+
date: 2012-11-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: debugger-ruby_core_source
|
@@ -97,9 +97,12 @@ require_paths:
|
|
97
97
|
required_ruby_version: !ruby/object:Gem::Requirement
|
98
98
|
none: false
|
99
99
|
requirements:
|
100
|
-
- -
|
100
|
+
- - ! '>='
|
101
101
|
- !ruby/object:Gem::Version
|
102
102
|
version: 1.9.2
|
103
|
+
- - <=
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: 2.0.0
|
103
106
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
107
|
none: false
|
105
108
|
requirements:
|