memprof 0.2.5 → 0.2.6
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.
- data/README +12 -16
- data/ext/arch.h +49 -6
- data/ext/bin_api.h +67 -19
- data/ext/elf.c +276 -56
- data/ext/mach.c +171 -58
- data/ext/memprof.c +91 -35
- data/ext/x86_64.c +77 -10
- data/ext/x86_64.h +86 -17
- data/ext/x86_gen.h +78 -38
- data/memprof.gemspec +2 -2
- metadata +3 -3
data/memprof.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
spec = Gem::Specification.new do |s|
|
2
2
|
s.name = 'memprof'
|
3
|
-
s.version = '0.2.
|
4
|
-
s.date = '2010-
|
3
|
+
s.version = '0.2.6'
|
4
|
+
s.date = '2010-03-13'
|
5
5
|
s.summary = 'Ruby Memory Profiler'
|
6
6
|
s.description = "Ruby memory profiler similar to bleak_house, but without patches to the Ruby VM"
|
7
7
|
s.homepage = "http://github.com/ice799/memprof"
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 6
|
9
|
+
version: 0.2.6
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Joe Damato
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-
|
19
|
+
date: 2010-03-13 00:00:00 -08:00
|
20
20
|
default_executable:
|
21
21
|
dependencies: []
|
22
22
|
|