ruby-breakpoint 0.5.0
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/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
metadata
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.5
|
3
|
+
specification_version: 1
|
4
|
+
name: ruby-breakpoint
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.5.0
|
7
|
+
date: 2005-03-04
|
8
|
+
summary: ruby-breakpoint lets you inspect and modify state at run time.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: flgr@ccan.de
|
12
|
+
homepage: http://ruby-breakpoint.rubyforge.org/
|
13
|
+
rubyforge_project: ruby-breakpoint
|
14
|
+
description: "ruby-breakpoint lets you inspect and modify state at run time. This allows you
|
15
|
+
to diagnose bugs, patch applications and more all via IRB by simply doing a
|
16
|
+
method call at the place you want to investigate."
|
17
|
+
autorequire: breakpoint.rb
|
18
|
+
default_executable:
|
19
|
+
bindir: bin
|
20
|
+
has_rdoc: true
|
21
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
22
|
+
requirements:
|
23
|
+
-
|
24
|
+
- ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.8.2
|
27
|
+
version:
|
28
|
+
platform: ruby
|
29
|
+
authors:
|
30
|
+
- Florian Gross
|
31
|
+
files:
|
32
|
+
- bin
|
33
|
+
- COPYING
|
34
|
+
- doc
|
35
|
+
- GPL
|
36
|
+
- lib
|
37
|
+
- Manifest
|
38
|
+
- NEWS
|
39
|
+
- README
|
40
|
+
- setup.rb
|
41
|
+
- TODO
|
42
|
+
- bin/breakpoint_client
|
43
|
+
- doc/classes
|
44
|
+
- doc/created.rid
|
45
|
+
- doc/files
|
46
|
+
- doc/fr_class_index.html
|
47
|
+
- doc/fr_file_index.html
|
48
|
+
- doc/fr_method_index.html
|
49
|
+
- doc/index.html
|
50
|
+
- doc/rdoc-style.css
|
51
|
+
- doc/classes/Binding.html
|
52
|
+
- doc/classes/Breakpoint
|
53
|
+
- doc/classes/Breakpoint.html
|
54
|
+
- doc/classes/Breakpoint/CommandBundle
|
55
|
+
- doc/classes/Breakpoint/CommandBundle.html
|
56
|
+
- doc/classes/Breakpoint/FailedAssertError.html
|
57
|
+
- doc/classes/Breakpoint/CommandBundle/Client.html
|
58
|
+
- doc/files/COPYING.html
|
59
|
+
- doc/files/lib
|
60
|
+
- doc/files/NEWS.html
|
61
|
+
- doc/files/README.html
|
62
|
+
- doc/files/TODO.html
|
63
|
+
- doc/files/lib/binding_of_caller_rb.html
|
64
|
+
- doc/files/lib/breakpoint_rb.html
|
65
|
+
- lib/binding_of_caller.rb
|
66
|
+
- lib/breakpoint.rb
|
67
|
+
test_files: []
|
68
|
+
rdoc_options:
|
69
|
+
- "--inline-source"
|
70
|
+
- "--line-numbers"
|
71
|
+
- "--title"
|
72
|
+
- ruby-breakpoint
|
73
|
+
extra_rdoc_files:
|
74
|
+
- README
|
75
|
+
- NEWS
|
76
|
+
- TODO
|
77
|
+
- COPYING
|
78
|
+
executables:
|
79
|
+
- breakpoint_client
|
80
|
+
extensions: []
|
81
|
+
requirements: []
|
82
|
+
dependencies: []
|