We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b0fddb6 + 1fc3911 commit 8244ebcCopy full SHA for 8244ebc
lib/ruby-debug-ide/command.rb
@@ -118,6 +118,7 @@ def timeout(sec)
118
def debug_eval(str, b = get_binding)
119
begin
120
str = str.to_s
121
+ str.force_encoding('UTF-8') if(RUBY_VERSION > 2.0)
122
to_inspect = Command.unescape_incoming(str)
123
max_time = Debugger.evaluation_timeout
124
@printer.print_debug("Evaluating %s with timeout after %i sec", str, max_time)
lib/ruby-debug-ide/version.rb
@@ -1,3 +1,3 @@
1
module Debugger
2
- IDE_VERSION='0.6.1.beta4'
+ IDE_VERSION='0.6.1.beta5'
3
end
0 commit comments