File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
- ## [ 0.4.23.beta9] ( https://github.com/ruby-debug/ruby-debug-ide/compare/v0.4.23.beta9...v0.4.23.beta10 )
1
+ ## [ 0.4.23.beta11] ( https://github.com/ruby-debug/ruby-debug-ide/compare/v0.4.23.beta10...v0.4.23.beta11 )
2
+
3
+ * adding breakpoint in non-existing file should not break debugger
4
+ [ RUBY-15873] ( https://youtrack.jetbrains.com/issue/RUBY-15873 )
5
+
6
+ ## [ 0.4.23.beta10] ( https://github.com/ruby-debug/ruby-debug-ide/compare/v0.4.23.beta9...v0.4.23.beta10 )
2
7
3
8
* fixed problem with printing hashes [ RUBY-15804] ( https://youtrack.jetbrains.com/issue/RUBY-15804 )
4
9
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ def realpath(filename)
70
70
if ( RUBY_VERSION < '1.9' ) || ( RbConfig ::CONFIG [ 'host_os' ] =~ /mswin/ )
71
71
filename
72
72
else
73
- File . realpath ( filename )
73
+ File . realpath ( filename ) rescue filename
74
74
end
75
75
end
76
76
end
Original file line number Diff line number Diff line change 1
1
module Debugger
2
- IDE_VERSION = '0.4.23.beta10 '
2
+ IDE_VERSION = '0.4.23.beta11 '
3
3
end
You can’t perform that action at this time.
0 commit comments