bleak_house 3.5 → 3.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +2 -0
- data/Manifest +1 -1
- data/ext/bleak_house/logger/build_ruby.rb +2 -2
- data/ruby/ruby-1.8.6-p110.tar.bz2 +0 -0
- data.tar.gz.sig +0 -0
- metadata +50 -50
- metadata.gz.sig +0 -0
- data/ruby/ruby-1.8.6.tar.bz2 +0 -0
data/CHANGELOG
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
|
2
|
+
v3.5.1. Update bundled Ruby to patchlevel 110. Delete your current ruby-bleak-house and reinstall.
|
3
|
+
|
2
4
|
v3.5. Explain when you need more frames. Use a cross-platform version of 'which'. Slight accuracy improvement.
|
3
5
|
|
4
6
|
v3.4. Clearer output descriptions; work around a Marshal bug on x64; fix for missing immortal leaks.
|
data/Manifest
CHANGED
@@ -30,14 +30,14 @@ unless which('ruby-bleak-house')
|
|
30
30
|
Dir.chdir(build_dir) do
|
31
31
|
|
32
32
|
# Copy Ruby source
|
33
|
-
bz2 = "ruby-1.8.6.tar.bz2"
|
33
|
+
bz2 = "ruby-1.8.6-p110.tar.bz2"
|
34
34
|
FileUtils.copy "#{source_dir}/#{bz2}", bz2
|
35
35
|
|
36
36
|
# Extract
|
37
37
|
system("tar xjf #{bz2} > tar.log 2>&1")
|
38
38
|
File.delete bz2
|
39
39
|
|
40
|
-
Dir.chdir("ruby-1.8.6") do
|
40
|
+
Dir.chdir("ruby-1.8.6-p110") do
|
41
41
|
|
42
42
|
# Patch, configure, and build
|
43
43
|
system("patch -p0 < \'#{source_dir}/gc.c.patch\' > ../gc.c.patch.log 2>&1")
|
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,36 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.9.4.6
|
3
|
-
specification_version: 2
|
4
2
|
name: bleak_house
|
5
3
|
version: !ruby/object:Gem::Version
|
6
|
-
version:
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
- lib
|
11
|
-
- ext
|
12
|
-
email: ""
|
13
|
-
homepage: http://blog.evanweaver.com/files/doc/fauna/bleak_house/
|
14
|
-
rubyforge_project: fauna
|
15
|
-
description: A library for finding memory leaks.
|
4
|
+
version: 3.5.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Evan Weaver
|
16
8
|
autorequire:
|
17
|
-
default_executable:
|
18
9
|
bindir: bin
|
19
|
-
has_rdoc: true
|
20
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
21
|
-
requirements:
|
22
|
-
- - ">="
|
23
|
-
- !ruby/object:Gem::Version
|
24
|
-
version: "0"
|
25
|
-
version:
|
26
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
27
|
-
requirements:
|
28
|
-
- - ">="
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: "0"
|
31
|
-
version:
|
32
|
-
platform: ruby
|
33
|
-
signing_key:
|
34
10
|
cert_chain:
|
35
11
|
- |
|
36
12
|
-----BEGIN CERTIFICATE-----
|
@@ -54,9 +30,26 @@ cert_chain:
|
|
54
30
|
yZ0=
|
55
31
|
-----END CERTIFICATE-----
|
56
32
|
|
57
|
-
|
58
|
-
|
59
|
-
|
33
|
+
date: 2007-11-28 00:00:00 -05:00
|
34
|
+
default_executable:
|
35
|
+
dependencies:
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: ccsv
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: "0"
|
44
|
+
version:
|
45
|
+
description: A library for finding memory leaks.
|
46
|
+
email: ""
|
47
|
+
executables:
|
48
|
+
- bleak
|
49
|
+
extensions:
|
50
|
+
- ext/bleak_house/logger/extconf.rb
|
51
|
+
extra_rdoc_files: []
|
52
|
+
|
60
53
|
files:
|
61
54
|
- bin/bleak
|
62
55
|
- CHANGELOG
|
@@ -85,29 +78,36 @@ files:
|
|
85
78
|
- README
|
86
79
|
- ruby/gc.c.patch
|
87
80
|
- ruby/parse.y.patch
|
88
|
-
- ruby/ruby-1.8.6.tar.bz2
|
81
|
+
- ruby/ruby-1.8.6-p110.tar.bz2
|
89
82
|
- test/misc/direct.rb
|
90
83
|
- test/unit/test_bleak_house.rb
|
91
84
|
- TODO
|
92
|
-
|
93
|
-
|
85
|
+
has_rdoc: true
|
86
|
+
homepage: http://blog.evanweaver.com/files/doc/fauna/bleak_house/
|
87
|
+
post_install_message:
|
94
88
|
rdoc_options: []
|
95
89
|
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
-
|
90
|
+
require_paths:
|
91
|
+
- lib
|
92
|
+
- ext
|
93
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: "0"
|
98
|
+
version:
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: "0"
|
104
|
+
version:
|
102
105
|
requirements: []
|
103
106
|
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
- !ruby/object:Gem::Version
|
112
|
-
version: "0"
|
113
|
-
version:
|
107
|
+
rubyforge_project: fauna
|
108
|
+
rubygems_version: 0.9.5
|
109
|
+
signing_key:
|
110
|
+
specification_version: 2
|
111
|
+
summary: A library for finding memory leaks.
|
112
|
+
test_files:
|
113
|
+
- test/unit/test_bleak_house.rb
|
metadata.gz.sig
CHANGED
Binary file
|
data/ruby/ruby-1.8.6.tar.bz2
DELETED
Binary file
|