better_caller 0.0.1
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/LICENSE +20 -0
- data/README.rdoc +69 -0
- data/ext/better_caller.c +148 -0
- data/ext/debug.h +36 -0
- data/ext/dln.h +41 -0
- data/ext/encdb.h +147 -0
- data/ext/eval_intern.h +215 -0
- data/ext/extconf.rb +3 -0
- data/ext/gc.h +75 -0
- data/ext/id.h +163 -0
- data/ext/iseq.h +103 -0
- data/ext/node.h +516 -0
- data/ext/parse.h +189 -0
- data/ext/regenc.h +207 -0
- data/ext/regint.h +842 -0
- data/ext/regparse.h +351 -0
- data/ext/revision.h +1 -0
- data/ext/thread_pthread.h +24 -0
- data/ext/thread_win32.h +33 -0
- data/ext/transcode_data.h +106 -0
- data/ext/transdb.h +147 -0
- data/ext/version.h +55 -0
- data/ext/vm_core.h +647 -0
- data/ext/vm_exec.h +184 -0
- data/ext/vm_insnhelper.h +196 -0
- data/ext/vm_opts.h +51 -0
- data/spec/better_caller_spec.rb +7 -0
- data/spec/spec_helper.rb +8 -0
- metadata +93 -0
metadata
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: better_caller
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tim Morgan
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-12-23 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: bacon
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: "A more programmer-friendly call stack complete with bindings for each level: no more string parsing!"
|
26
|
+
email: better_caller@timothymorgan.info
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions:
|
30
|
+
- ext/extconf.rb
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.rdoc
|
34
|
+
files:
|
35
|
+
- README.rdoc
|
36
|
+
- ext/better_caller.c
|
37
|
+
- ext/debug.h
|
38
|
+
- ext/dln.h
|
39
|
+
- ext/encdb.h
|
40
|
+
- ext/eval_intern.h
|
41
|
+
- ext/extconf.rb
|
42
|
+
- ext/gc.h
|
43
|
+
- ext/id.h
|
44
|
+
- ext/iseq.h
|
45
|
+
- ext/node.h
|
46
|
+
- ext/parse.h
|
47
|
+
- ext/regenc.h
|
48
|
+
- ext/regint.h
|
49
|
+
- ext/regparse.h
|
50
|
+
- ext/revision.h
|
51
|
+
- ext/thread_pthread.h
|
52
|
+
- ext/thread_win32.h
|
53
|
+
- ext/transcode_data.h
|
54
|
+
- ext/transdb.h
|
55
|
+
- ext/version.h
|
56
|
+
- ext/vm_core.h
|
57
|
+
- ext/vm_exec.h
|
58
|
+
- ext/vm_insnhelper.h
|
59
|
+
- ext/vm_opts.h
|
60
|
+
- spec/better_caller_spec.rb
|
61
|
+
- spec/spec_helper.rb
|
62
|
+
- LICENSE
|
63
|
+
has_rdoc: true
|
64
|
+
homepage: http://github.com/RISCfuture/better_caller
|
65
|
+
licenses: []
|
66
|
+
|
67
|
+
post_install_message:
|
68
|
+
rdoc_options:
|
69
|
+
- --charset=UTF-8
|
70
|
+
require_paths:
|
71
|
+
- lib
|
72
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: "0"
|
77
|
+
version:
|
78
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: "0"
|
83
|
+
version:
|
84
|
+
requirements: []
|
85
|
+
|
86
|
+
rubyforge_project: better_caller
|
87
|
+
rubygems_version: 1.3.5
|
88
|
+
signing_key:
|
89
|
+
specification_version: 3
|
90
|
+
summary: Symbolic call stack with bindings
|
91
|
+
test_files:
|
92
|
+
- spec/better_caller_spec.rb
|
93
|
+
- spec/spec_helper.rb
|