debugger 1.6.7 → 1.6.8
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/CHANGELOG.md +3 -0
- data/lib/debugger/version.rb +1 -1
- data/lib/ruby-debug/commands/catchpoint.rb +4 -4
- metadata +2 -2
data/CHANGELOG.md
CHANGED
data/lib/debugger/version.rb
CHANGED
@@ -24,15 +24,15 @@ module Debugger
|
|
24
24
|
print "Warning #{excn} is not known to be a Class\n"
|
25
25
|
end
|
26
26
|
Debugger.add_catchpoint(excn)
|
27
|
-
print "Catch exception
|
27
|
+
print "Catch exception #{excn}.\n"
|
28
28
|
end
|
29
29
|
elsif @match[2] != 'off'
|
30
|
-
errmsg "Off expected. Got
|
30
|
+
errmsg "Off expected. Got #{@match[2]}\n"
|
31
31
|
elsif Debugger.catchpoints.member?(excn)
|
32
32
|
Debugger.catchpoints.delete(excn)
|
33
|
-
print "Catch for exception
|
33
|
+
print "Catch for exception #{excn} removed.\n"
|
34
34
|
else
|
35
|
-
errmsg "Catch for exception
|
35
|
+
errmsg "Catch for exception #{excn} not found.\n"
|
36
36
|
end
|
37
37
|
end
|
38
38
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: debugger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2014-05-
|
14
|
+
date: 2014-05-27 00:00:00.000000000Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: columnize
|