ruby-breakpoint 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +56 -0
- data/GPL +340 -0
- data/Manifest +35 -0
- data/NEWS +18 -0
- data/README +43 -0
- data/TODO +31 -0
- data/bin/breakpoint_client +214 -0
- data/doc/classes/Binding.html +221 -0
- data/doc/classes/Breakpoint.html +540 -0
- data/doc/classes/Breakpoint/CommandBundle.html +207 -0
- data/doc/classes/Breakpoint/CommandBundle/Client.html +201 -0
- data/doc/classes/Breakpoint/FailedAssertError.html +118 -0
- data/doc/created.rid +1 -0
- data/doc/files/COPYING.html +163 -0
- data/doc/files/NEWS.html +135 -0
- data/doc/files/README.html +154 -0
- data/doc/files/TODO.html +162 -0
- data/doc/files/lib/binding_of_caller_rb.html +101 -0
- data/doc/files/lib/breakpoint_rb.html +202 -0
- data/doc/fr_class_index.html +31 -0
- data/doc/fr_file_index.html +32 -0
- data/doc/fr_method_index.html +38 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/lib/binding_of_caller.rb +80 -0
- data/lib/breakpoint.rb +547 -0
- data/setup.rb +1360 -0
- metadata +82 -0
data/doc/created.rid
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Fri Mar 04 21:39:08 Westeurop�ische Normalzeit 2005
|
@@ -0,0 +1,163 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>File: COPYING</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="fileHeader">
|
50
|
+
<h1>COPYING</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>COPYING
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Sun Feb 20 10:14:28 Westeurop�ische Normalzeit 2005</td>
|
60
|
+
</tr>
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
<div id="description">
|
72
|
+
<p>
|
73
|
+
ruby-breakpoint is copyrighted free software by Florian Gross
|
74
|
+
<flgr@ccan.de>. You can redistribute it and/or modify it under either
|
75
|
+
the terms of the GPL (see the file GPL), or the conditions below:
|
76
|
+
</p>
|
77
|
+
<pre>
|
78
|
+
1. You may make and give away verbatim copies of the source form of the
|
79
|
+
software without restriction, provided that you duplicate all of the
|
80
|
+
original copyright notices and associated disclaimers.
|
81
|
+
|
82
|
+
2. You may modify your copy of the software in any way, provided that
|
83
|
+
you do at least ONE of the following:
|
84
|
+
|
85
|
+
a) place your modifications in the Public Domain or otherwise
|
86
|
+
make them Freely Available, such as by posting said
|
87
|
+
modifications to Usenet or an equivalent medium, or by allowing
|
88
|
+
the author to include your modifications in the software.
|
89
|
+
|
90
|
+
b) use the modified software only within your corporation or
|
91
|
+
organization.
|
92
|
+
|
93
|
+
c) give non-standard binaries non-standard names, with
|
94
|
+
instructions on where to get the original software distribution.
|
95
|
+
|
96
|
+
d) make other distribution arrangements with the author.
|
97
|
+
|
98
|
+
3. You may distribute the software in object code or binary form,
|
99
|
+
provided that you do at least ONE of the following:
|
100
|
+
|
101
|
+
a) distribute the binaries and library files of the software,
|
102
|
+
together with instructions (in the manual page or equivalent)
|
103
|
+
on where to get the original distribution.
|
104
|
+
|
105
|
+
b) accompany the distribution with the machine-readable source of
|
106
|
+
the software.
|
107
|
+
|
108
|
+
c) give non-standard binaries non-standard names, with
|
109
|
+
instructions on where to get the original software distribution.
|
110
|
+
|
111
|
+
d) make other distribution arrangements with the author.
|
112
|
+
|
113
|
+
4. You may modify and include the part of the software into any other
|
114
|
+
software (possibly commercial). But some files in the distribution
|
115
|
+
are not written by the author, so that they are not under these terms.
|
116
|
+
|
117
|
+
For the list of those files and their copying conditions, see the
|
118
|
+
file LEGAL.
|
119
|
+
|
120
|
+
5. The scripts and library files supplied as input to or produced as
|
121
|
+
output from the software do not automatically fall under the
|
122
|
+
copyright of the software, but belong to whomever generated them,
|
123
|
+
and may be sold commercially, and may be aggregated with this
|
124
|
+
software.
|
125
|
+
|
126
|
+
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
127
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
128
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
129
|
+
PURPOSE.
|
130
|
+
</pre>
|
131
|
+
|
132
|
+
</div>
|
133
|
+
|
134
|
+
|
135
|
+
</div>
|
136
|
+
|
137
|
+
|
138
|
+
</div>
|
139
|
+
|
140
|
+
|
141
|
+
<!-- if includes -->
|
142
|
+
|
143
|
+
<div id="section">
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
<!-- if method_list -->
|
153
|
+
|
154
|
+
|
155
|
+
</div>
|
156
|
+
|
157
|
+
|
158
|
+
<div id="validator-badges">
|
159
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
160
|
+
</div>
|
161
|
+
|
162
|
+
</body>
|
163
|
+
</html>
|
data/doc/files/NEWS.html
ADDED
@@ -0,0 +1,135 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>File: NEWS</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="fileHeader">
|
50
|
+
<h1>NEWS</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>NEWS
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Fri Mar 04 19:34:27 Westeurop�ische Normalzeit 2005</td>
|
60
|
+
</tr>
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
<div id="description">
|
72
|
+
<h1>NEWS</h1>
|
73
|
+
<p>
|
74
|
+
This file sums up important changes that happened between releases.
|
75
|
+
</p>
|
76
|
+
<h2>ruby-breakpoint 0.5.0</h2>
|
77
|
+
<ul>
|
78
|
+
<li>breakpoint_client has better logic for guessing the client-uri
|
79
|
+
automatically. This ought to fix connection errors that were happening
|
80
|
+
because the client service was bound to the wrong network interface.
|
81
|
+
|
82
|
+
</li>
|
83
|
+
<li>Traced down the origin of SecurityError problems to a bug in Ruby 1.8.1 and
|
84
|
+
early 1.8.2 releases. If you’re experiencing this you can usually fix
|
85
|
+
it by compiling the Ruby 1.8.2 available from ruby-lang.org. See the FAQ on
|
86
|
+
the homepage for more information on this.
|
87
|
+
|
88
|
+
</li>
|
89
|
+
<li>Support for drbunix:/ URIs — this allows communication via files on
|
90
|
+
Unix based platforms. It is more secure than ACLs + socket communication on
|
91
|
+
shared hosts.
|
92
|
+
|
93
|
+
</li>
|
94
|
+
<li>Fixed a bug in <a
|
95
|
+
href="../classes/Breakpoint.html#M000007">Breakpoint.deactivate_drb</a>
|
96
|
+
that was happening when calling it from the breakpoint IRB session.
|
97
|
+
|
98
|
+
</li>
|
99
|
+
<li>Improved documentation in a few minor areas.
|
100
|
+
|
101
|
+
</li>
|
102
|
+
</ul>
|
103
|
+
|
104
|
+
</div>
|
105
|
+
|
106
|
+
|
107
|
+
</div>
|
108
|
+
|
109
|
+
|
110
|
+
</div>
|
111
|
+
|
112
|
+
|
113
|
+
<!-- if includes -->
|
114
|
+
|
115
|
+
<div id="section">
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
<!-- if method_list -->
|
125
|
+
|
126
|
+
|
127
|
+
</div>
|
128
|
+
|
129
|
+
|
130
|
+
<div id="validator-badges">
|
131
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
132
|
+
</div>
|
133
|
+
|
134
|
+
</body>
|
135
|
+
</html>
|
@@ -0,0 +1,154 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>File: README</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="fileHeader">
|
50
|
+
<h1>README</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>README
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Fri Mar 04 20:52:10 Westeurop�ische Normalzeit 2005</td>
|
60
|
+
</tr>
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
<div id="description">
|
72
|
+
<h1>ruby-breakpoint 0.5.0 README</h1>
|
73
|
+
<p>
|
74
|
+
ruby-breakpoint lets you inspect and modify state at run time. This allows
|
75
|
+
you to diagnose bugs, patch
|
76
|
applications and more all via IRB by simply
|
77
|
+
doing a method call at the place you want to investigate.
|
78
|
+
</p>
|
79
|
+
<p>
|
80
|
+
ruby-breakpoint is integrated into the popular RubyOnRails and Nitro web
|
81
|
+
development frameworks. In the past it has also been a part of the Ruby
|
82
|
+
dev-utils Project.
|
83
|
+
</p>
|
84
|
+
<p>
|
85
|
+
ruby-breakpoint is available from <a
|
86
|
+
href="http://ruby-breakpoint.rubyforge.org">ruby-breakpoint.rubyforge.org</a>/
|
87
|
+
— that web site also is a good place for discussing new features,
|
88
|
+
filing bug reports and so on.
|
89
|
+
</p>
|
90
|
+
<p>
|
91
|
+
See the NEWS file for the changes that were done in this release.
|
92
|
+
</p>
|
93
|
+
<h2>Requirements</h2>
|
94
|
+
<ul>
|
95
|
+
<li>Ruby >= 1.8.2
|
96
|
+
|
97
|
+
</li>
|
98
|
+
<li>DRb, IRB (usually shipped with Ruby, but not on Debian)
|
99
|
+
|
100
|
+
</li>
|
101
|
+
</ul>
|
102
|
+
<h2>Installation</h2>
|
103
|
+
<p>
|
104
|
+
De-compress archive and enter its top directory. Then type:
|
105
|
+
</p>
|
106
|
+
<pre>
|
107
|
+
($ su)
|
108
|
+
# ruby setup.rb
|
109
|
+
</pre>
|
110
|
+
<p>
|
111
|
+
These simple step installs this program under the default location of Ruby
|
112
|
+
libraries. You can also install files into your favorite directory by
|
113
|
+
supplying setup.rb some options. Try "ruby setup.rb —help".
|
114
|
+
</p>
|
115
|
+
<h2>License</h2>
|
116
|
+
<p>
|
117
|
+
Dual licensed under GPL and Ruby’s custom license. See COPYING.
|
118
|
+
</p>
|
119
|
+
<h2>Author</h2>
|
120
|
+
<p>
|
121
|
+
Florian Gross, flgr@ccan.de
|
122
|
+
</p>
|
123
|
+
|
124
|
+
</div>
|
125
|
+
|
126
|
+
|
127
|
+
</div>
|
128
|
+
|
129
|
+
|
130
|
+
</div>
|
131
|
+
|
132
|
+
|
133
|
+
<!-- if includes -->
|
134
|
+
|
135
|
+
<div id="section">
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
<!-- if method_list -->
|
145
|
+
|
146
|
+
|
147
|
+
</div>
|
148
|
+
|
149
|
+
|
150
|
+
<div id="validator-badges">
|
151
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
152
|
+
</div>
|
153
|
+
|
154
|
+
</body>
|
155
|
+
</html>
|