call_stack 0.1.0.0

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,74 @@
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: ruby
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
+ test_files: []
59
+
60
+ rdoc_options:
61
+ - --main
62
+ - README.en
63
+ - --title
64
+ - call_stack
65
+ extra_rdoc_files:
66
+ - README.en
67
+ executables: []
68
+
69
+ extensions:
70
+ - ext/call_stack/extconf.rb
71
+ requirements: []
72
+
73
+ dependencies: []
74
+