call_stack 0.1.0.0-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +56 -0
- data/README.en +76 -0
- data/Rakefile +95 -0
- data/THANKS +5 -0
- data/VERSION +1 -0
- data/example.rb +42 -0
- data/ext/call_stack/call_stack.c +493 -0
- data/ext/call_stack/extconf.rb +3 -0
- data/lib/binding_of_caller.rb +11 -0
- data/lib/breakpoint185.rb +8 -0
- data/lib/call_stack.so +0 -0
- data/mingw-rbconfig.rb +174 -0
- data/setup.rb +1585 -0
- metadata +75 -0
metadata
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.0
|
3
|
+
specification_version: 1
|
4
|
+
name: call_stack
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.0.0
|
7
|
+
date: 2006-09-07 00:00:00 +02:00
|
8
|
+
summary: Call stack information and Binding.of_caller/breakpoint workaround for Ruby 1.8.5
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: mfp@acm.org
|
12
|
+
homepage: http://eigenclass.org/
|
13
|
+
rubyforge_project:
|
14
|
+
description: "call_stack can be used to obtain backtrace information in a running program. It also contains a new Binding.of_caller implementation that works with Ruby 1.8.5. It can be used with Rails' breakpointer as follows: ruby -rbreakpoint185 script/server and then, in another console script/breakpointer"
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: mswin32
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message: |+
|
29
|
+
|
30
|
+
=============================================================================
|
31
|
+
|
32
|
+
call_stack provides an alternative implementation of Binding.of_caller that
|
33
|
+
works on Ruby > 1.8.4. You can use it by loading breakpoint185.rb before
|
34
|
+
running your program.
|
35
|
+
|
36
|
+
If you're using Rails, you can do
|
37
|
+
ruby -rbreakpoint185 script/server
|
38
|
+
and then, in another console
|
39
|
+
script/breakpointer
|
40
|
+
|
41
|
+
=============================================================================
|
42
|
+
|
43
|
+
authors:
|
44
|
+
- Mauricio Fernandez
|
45
|
+
files:
|
46
|
+
- ext/call_stack/call_stack.c
|
47
|
+
- ext/call_stack/extconf.rb
|
48
|
+
- lib/binding_of_caller.rb
|
49
|
+
- lib/breakpoint185.rb
|
50
|
+
- LICENSE
|
51
|
+
- Rakefile
|
52
|
+
- README.en
|
53
|
+
- THANKS
|
54
|
+
- VERSION
|
55
|
+
- example.rb
|
56
|
+
- mingw-rbconfig.rb
|
57
|
+
- setup.rb
|
58
|
+
- lib/call_stack.so
|
59
|
+
test_files: []
|
60
|
+
|
61
|
+
rdoc_options:
|
62
|
+
- --main
|
63
|
+
- README.en
|
64
|
+
- --title
|
65
|
+
- call_stack
|
66
|
+
extra_rdoc_files:
|
67
|
+
- README.en
|
68
|
+
executables: []
|
69
|
+
|
70
|
+
extensions: []
|
71
|
+
|
72
|
+
requirements: []
|
73
|
+
|
74
|
+
dependencies: []
|
75
|
+
|