bleak_house 4.1 → 4.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +3 -1
- data/Manifest +1 -1
- data/Rakefile +12 -0
- data/bleak_house.gemspec +97 -41
- data/ext/build_ruby.rb +3 -3
- data/ruby/gc.patch +4 -4
- data/ruby/ruby-1.8.6-p230.tar.bz2 +0 -0
- data.tar.gz.sig +0 -0
- metadata +18 -8
- metadata.gz.sig +0 -0
- data/ruby/ruby-1.8.6-p114.tar.bz2 +0 -0
data/CHANGELOG
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
|
2
|
+
v4.1.1. Update bundled Ruby to patchlevel 230.
|
3
|
+
|
2
4
|
v4.1. Support calculating deltas in analyze utility.
|
3
5
|
|
4
6
|
v4.0. Track spawn points live instead of sampling.
|
@@ -9,7 +11,7 @@ v3.7. Sample object contents. Restore Rails 1.2.x compatibility.
|
|
9
11
|
|
10
12
|
v3.6. Rails 2.0.2 compatibility.
|
11
13
|
|
12
|
-
v3.5.1. Update bundled Ruby to patchlevel 110.
|
14
|
+
v3.5.1. Update bundled Ruby to patchlevel 110.
|
13
15
|
|
14
16
|
v3.5. Explain when you need more frames. Use a cross-platform version of 'which'. Slight accuracy improvement.
|
15
17
|
|
data/Manifest
CHANGED
data/Rakefile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
|
2
|
+
require 'echoe'
|
3
|
+
|
4
|
+
Echoe.new("bleak_house") do |p|
|
5
|
+
p.author = "Evan Weaver"
|
6
|
+
p.project = "fauna"
|
7
|
+
p.summary = "A library for finding memory leaks."
|
8
|
+
p.url = "http://blog.evanweaver.com/files/doc/fauna/bleak_house/"
|
9
|
+
p.docs_host = 'blog.evanweaver.com:~/www/bax/public/files/doc/'
|
10
|
+
p.require_signed = true
|
11
|
+
p.rdoc_pattern = /^ext.*\.c|lib.*|^README|^CHANGELOG|^TODO|^LICENSE|^COPYING$/
|
12
|
+
end
|
data/bleak_house.gemspec
CHANGED
@@ -1,45 +1,101 @@
|
|
1
1
|
|
2
|
-
# Gem::Specification for Bleak_house-4.1
|
2
|
+
# Gem::Specification for Bleak_house-4.1.1
|
3
3
|
# Originally generated by Echoe
|
4
4
|
|
5
|
-
Gem::Specification
|
6
|
-
|
7
|
-
|
5
|
+
--- !ruby/object:Gem::Specification
|
6
|
+
name: bleak_house
|
7
|
+
version: !ruby/object:Gem::Version
|
8
|
+
version: 4.1.1
|
9
|
+
platform: ruby
|
10
|
+
authors:
|
11
|
+
- Evan Weaver
|
12
|
+
autorequire:
|
13
|
+
bindir: bin
|
14
|
+
date: 2008-06-22 00:00:00 -04:00
|
15
|
+
default_executable:
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
18
|
+
name: echoe
|
19
|
+
type: :development
|
20
|
+
version_requirement:
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: "0"
|
26
|
+
version:
|
27
|
+
description: A library for finding memory leaks.
|
28
|
+
email: ""
|
29
|
+
executables:
|
30
|
+
- bleak
|
31
|
+
extensions:
|
32
|
+
- ext/extconf.rb
|
33
|
+
extra_rdoc_files:
|
34
|
+
- CHANGELOG
|
35
|
+
- ext/snapshot.c
|
36
|
+
- lib/bleak_house/analyzer.rb
|
37
|
+
- lib/bleak_house/hook.rb
|
38
|
+
- lib/bleak_house.rb
|
39
|
+
- LICENSE
|
40
|
+
- LICENSE_BSD
|
41
|
+
- README
|
42
|
+
- TODO
|
43
|
+
files:
|
44
|
+
- bin/bleak
|
45
|
+
- CHANGELOG
|
46
|
+
- ext/build_ruby.rb
|
47
|
+
- ext/build_snapshot.rb
|
48
|
+
- ext/extconf.rb
|
49
|
+
- ext/snapshot.c
|
50
|
+
- ext/snapshot.h
|
51
|
+
- lib/bleak_house/analyzer.rb
|
52
|
+
- lib/bleak_house/hook.rb
|
53
|
+
- lib/bleak_house.rb
|
54
|
+
- LICENSE
|
55
|
+
- LICENSE_BSD
|
56
|
+
- Manifest
|
57
|
+
- README
|
58
|
+
- ruby/configure.patch
|
59
|
+
- ruby/gc.patch
|
60
|
+
- ruby/ruby-1.8.6-p230.tar.bz2
|
61
|
+
- ruby/valgrind.patch
|
62
|
+
- test/benchmark/bench.rb
|
63
|
+
- test/test_helper.rb
|
64
|
+
- test/unit/test_bleak_house.rb
|
65
|
+
- TODO
|
66
|
+
- bleak_house.gemspec
|
67
|
+
- Rakefile
|
68
|
+
has_rdoc: true
|
69
|
+
homepage: http://blog.evanweaver.com/files/doc/fauna/bleak_house/
|
70
|
+
post_install_message:
|
71
|
+
rdoc_options:
|
72
|
+
- --line-numbers
|
73
|
+
- --inline-source
|
74
|
+
- --title
|
75
|
+
- Bleak_house
|
76
|
+
- --main
|
77
|
+
- README
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
- ext
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: "0"
|
86
|
+
version:
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - "="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: "1.2"
|
92
|
+
version:
|
93
|
+
requirements: []
|
8
94
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
s.email = %q{}
|
17
|
-
s.executables = ["bleak"]
|
18
|
-
s.extensions = ["ext/extconf.rb"]
|
19
|
-
s.extra_rdoc_files = ["CHANGELOG", "ext/snapshot.c", "lib/bleak_house/analyzer.rb", "lib/bleak_house/hook.rb", "lib/bleak_house.rb", "LICENSE", "LICENSE_BSD", "README", "TODO"]
|
20
|
-
s.files = ["bin/bleak", "CHANGELOG", "ext/build_ruby.rb", "ext/build_snapshot.rb", "ext/extconf.rb", "ext/snapshot.c", "ext/snapshot.h", "lib/bleak_house/analyzer.rb", "lib/bleak_house/hook.rb", "lib/bleak_house.rb", "LICENSE", "LICENSE_BSD", "Manifest", "README", "ruby/configure.patch", "ruby/gc.patch", "ruby/ruby-1.8.6-p114.tar.bz2", "ruby/valgrind.patch", "test/benchmark/bench.rb", "test/test_helper.rb", "test/unit/test_bleak_house.rb", "TODO", "bleak_house.gemspec"]
|
21
|
-
s.has_rdoc = true
|
22
|
-
s.homepage = %q{http://blog.evanweaver.com/files/doc/fauna/bleak_house/}
|
23
|
-
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Bleak_house", "--main", "README"]
|
24
|
-
s.require_paths = ["lib", "ext"]
|
25
|
-
s.rubyforge_project = %q{fauna}
|
26
|
-
s.rubygems_version = %q{1.1.1}
|
27
|
-
s.summary = %q{A library for finding memory leaks.}
|
28
|
-
s.test_files = ["test/test_helper.rb", "test/unit/test_bleak_house.rb"]
|
29
|
-
end
|
30
|
-
|
31
|
-
|
32
|
-
# # Original Rakefile source (requires the Echoe gem):
|
33
|
-
#
|
34
|
-
#
|
35
|
-
# require 'echoe'
|
36
|
-
#
|
37
|
-
# Echoe.new("bleak_house") do |p|
|
38
|
-
# p.author = "Evan Weaver"
|
39
|
-
# p.project = "fauna"
|
40
|
-
# p.summary = "A library for finding memory leaks."
|
41
|
-
# p.url = "http://blog.evanweaver.com/files/doc/fauna/bleak_house/"
|
42
|
-
# p.docs_host = 'blog.evanweaver.com:~/www/bax/public/files/doc/'
|
43
|
-
# p.require_signed = true
|
44
|
-
# p.rdoc_pattern = /^ext.*\.c|lib.*|^README|^CHANGELOG|^TODO|^LICENSE|^COPYING$/
|
45
|
-
# end
|
95
|
+
rubyforge_project: fauna
|
96
|
+
rubygems_version: 1.2.0
|
97
|
+
specification_version: 2
|
98
|
+
summary: A library for finding memory leaks.
|
99
|
+
test_files:
|
100
|
+
- test/test_helper.rb
|
101
|
+
- test/unit/test_bleak_house.rb
|
data/ext/build_ruby.rb
CHANGED
@@ -24,7 +24,7 @@ def which(basename)
|
|
24
24
|
end
|
25
25
|
|
26
26
|
if which('ruby-bleak-house') and
|
27
|
-
`ruby-bleak-house -e "puts RUBY_PATCHLEVEL"`.to_i
|
27
|
+
`ruby-bleak-house -e "puts RUBY_PATCHLEVEL"`.to_i >= 902
|
28
28
|
# OK
|
29
29
|
else
|
30
30
|
# Build
|
@@ -43,14 +43,14 @@ else
|
|
43
43
|
Dir.chdir(build_dir) do
|
44
44
|
|
45
45
|
# Copy Ruby source
|
46
|
-
bz2 = "ruby-1.8.6-
|
46
|
+
bz2 = "ruby-1.8.6-p230.tar.bz2"
|
47
47
|
FileUtils.copy "#{source_dir}/#{bz2}", bz2
|
48
48
|
|
49
49
|
# Extract
|
50
50
|
system("tar xjf #{bz2} > tar.log 2>&1")
|
51
51
|
File.delete bz2
|
52
52
|
|
53
|
-
Dir.chdir("ruby-1.8.6-
|
53
|
+
Dir.chdir("ruby-1.8.6-p230") do
|
54
54
|
|
55
55
|
# Patch, configure, and build
|
56
56
|
["valgrind", "configure", "gc"].each do |patch|
|
data/ruby/gc.patch
CHANGED
@@ -119,11 +119,11 @@ Index: version.h
|
|
119
119
|
--- version.h (revision 6439)
|
120
120
|
+++ version.h (working copy)
|
121
121
|
@@ -2,7 +2,7 @@
|
122
|
-
#define RUBY_RELEASE_DATE "2008-
|
122
|
+
#define RUBY_RELEASE_DATE "2008-06-20"
|
123
123
|
#define RUBY_VERSION_CODE 186
|
124
|
-
#define RUBY_RELEASE_CODE
|
125
|
-
-#define RUBY_PATCHLEVEL
|
126
|
-
+#define RUBY_PATCHLEVEL
|
124
|
+
#define RUBY_RELEASE_CODE 20080620
|
125
|
+
-#define RUBY_PATCHLEVEL 230
|
126
|
+
+#define RUBY_PATCHLEVEL 902
|
127
127
|
|
128
128
|
#define RUBY_VERSION_MAJOR 1
|
129
129
|
#define RUBY_VERSION_MINOR 8
|
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bleak_house
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Evan Weaver
|
@@ -30,10 +30,19 @@ cert_chain:
|
|
30
30
|
yZ0=
|
31
31
|
-----END CERTIFICATE-----
|
32
32
|
|
33
|
-
date: 2008-
|
33
|
+
date: 2008-06-22 00:00:00 -04:00
|
34
34
|
default_executable:
|
35
|
-
dependencies:
|
36
|
-
|
35
|
+
dependencies:
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: echoe
|
38
|
+
type: :development
|
39
|
+
version_requirement:
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: "0"
|
45
|
+
version:
|
37
46
|
description: A library for finding memory leaks.
|
38
47
|
email: ""
|
39
48
|
executables:
|
@@ -67,13 +76,14 @@ files:
|
|
67
76
|
- README
|
68
77
|
- ruby/configure.patch
|
69
78
|
- ruby/gc.patch
|
70
|
-
- ruby/ruby-1.8.6-
|
79
|
+
- ruby/ruby-1.8.6-p230.tar.bz2
|
71
80
|
- ruby/valgrind.patch
|
72
81
|
- test/benchmark/bench.rb
|
73
82
|
- test/test_helper.rb
|
74
83
|
- test/unit/test_bleak_house.rb
|
75
84
|
- TODO
|
76
85
|
- bleak_house.gemspec
|
86
|
+
- Rakefile
|
77
87
|
has_rdoc: true
|
78
88
|
homepage: http://blog.evanweaver.com/files/doc/fauna/bleak_house/
|
79
89
|
post_install_message:
|
@@ -95,14 +105,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
95
105
|
version:
|
96
106
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
107
|
requirements:
|
98
|
-
- - "
|
108
|
+
- - "="
|
99
109
|
- !ruby/object:Gem::Version
|
100
|
-
version: "
|
110
|
+
version: "1.2"
|
101
111
|
version:
|
102
112
|
requirements: []
|
103
113
|
|
104
114
|
rubyforge_project: fauna
|
105
|
-
rubygems_version: 1.
|
115
|
+
rubygems_version: 1.2.0
|
106
116
|
signing_key:
|
107
117
|
specification_version: 2
|
108
118
|
summary: A library for finding memory leaks.
|
metadata.gz.sig
CHANGED
Binary file
|
Binary file
|