debugger-xml 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,13 +1,15 @@
|
|
1
1
|
module Debugger
|
2
|
-
|
2
|
+
if RUBY_PLATFORM =~ /darwin/
|
3
|
+
class TextMateCommand < Command
|
3
4
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
5
|
+
def execute_with_xml(*args)
|
6
|
+
errmsg(pr("general.errors.unsupported", cmd: 'tmate')) && return if Debugger.printer.type == "xml"
|
7
|
+
execute_without_xml(*args)
|
8
|
+
end
|
8
9
|
|
9
|
-
|
10
|
-
|
10
|
+
alias_method :execute_without_xml, :execute
|
11
|
+
alias_method :execute, :execute_with_xml
|
11
12
|
|
13
|
+
end
|
12
14
|
end
|
13
15
|
end
|
data/lib/debugger/xml/version.rb
CHANGED