honkster-perftools.rb 0.5.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.md +177 -0
- data/bin/pprof.rb +4 -0
- data/ext/extconf.rb +116 -0
- data/ext/perftools.c +493 -0
- data/ext/src/google-perftools-1.6.tar.gz +0 -0
- data/patches/perftools-debug.patch +20 -0
- data/patches/perftools-frames.patch +13 -0
- data/patches/perftools-gc.patch +107 -0
- data/patches/perftools-notests.patch +15 -0
- data/patches/perftools-objects.patch +85 -0
- data/patches/perftools-osx.patch +13 -0
- data/patches/perftools-pprof.patch +76 -0
- data/patches/perftools-stddef.patch +34 -0
- data/patches/perftools.patch +266 -0
- data/perftools.rb.gemspec +21 -0
- metadata +70 -0
@@ -0,0 +1,21 @@
|
|
1
|
+
spec = Gem::Specification.new do |s|
|
2
|
+
s.name = 'honkster-perftools.rb'
|
3
|
+
s.version = '0.5.6'
|
4
|
+
s.date = '2011-01-23'
|
5
|
+
s.rubyforge_project = 'perftools-rb'
|
6
|
+
s.summary = 'google-perftools for ruby code'
|
7
|
+
s.description = 'A sampling profiler for ruby code based on patches to google-perftools'
|
8
|
+
|
9
|
+
s.homepage = "http://github.com/tmm1/perftools.rb"
|
10
|
+
|
11
|
+
s.authors = ["Aman Gupta"]
|
12
|
+
s.email = "perftools@tmm1.net"
|
13
|
+
|
14
|
+
s.has_rdoc = false
|
15
|
+
s.extensions = 'ext/extconf.rb'
|
16
|
+
s.bindir = 'bin'
|
17
|
+
s.executables << 'pprof.rb'
|
18
|
+
|
19
|
+
# ruby -rpp -e' pp `git ls-files | grep -v examples`.split("\n").sort '
|
20
|
+
s.files = `git ls-files`.split("\n").reject{ |f| f =~ /^examples/ }
|
21
|
+
end
|
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: honkster-perftools.rb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.5.6
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Aman Gupta
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-01-23 00:00:00 -08:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description: A sampling profiler for ruby code based on patches to google-perftools
|
18
|
+
email: perftools@tmm1.net
|
19
|
+
executables:
|
20
|
+
- pprof.rb
|
21
|
+
extensions:
|
22
|
+
- ext/extconf.rb
|
23
|
+
extra_rdoc_files: []
|
24
|
+
|
25
|
+
files:
|
26
|
+
- README.md
|
27
|
+
- bin/pprof.rb
|
28
|
+
- ext/extconf.rb
|
29
|
+
- ext/perftools.c
|
30
|
+
- ext/src/google-perftools-1.6.tar.gz
|
31
|
+
- patches/perftools-debug.patch
|
32
|
+
- patches/perftools-frames.patch
|
33
|
+
- patches/perftools-gc.patch
|
34
|
+
- patches/perftools-notests.patch
|
35
|
+
- patches/perftools-objects.patch
|
36
|
+
- patches/perftools-osx.patch
|
37
|
+
- patches/perftools-pprof.patch
|
38
|
+
- patches/perftools-stddef.patch
|
39
|
+
- patches/perftools.patch
|
40
|
+
- perftools.rb.gemspec
|
41
|
+
has_rdoc: false
|
42
|
+
homepage: http://github.com/tmm1/perftools.rb
|
43
|
+
licenses: []
|
44
|
+
|
45
|
+
post_install_message:
|
46
|
+
rdoc_options: []
|
47
|
+
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: "0"
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: "0"
|
62
|
+
requirements: []
|
63
|
+
|
64
|
+
rubyforge_project: perftools-rb
|
65
|
+
rubygems_version: 1.3.9.2
|
66
|
+
signing_key:
|
67
|
+
specification_version: 3
|
68
|
+
summary: google-perftools for ruby code
|
69
|
+
test_files: []
|
70
|
+
|