sketchup-ruby-debugger
sketchup-ruby-debugger copied to clipboard
Ruby API debugger for SketchUp 2014 and later.
The following code fails if debugging is enabled ```ruby class Vector include Enumerable def initialize(coordinates) @coordinates = coordinates end def each(&block) @coordinates.each(&block) end def +(other) Vector.new(zip(other).collect { |x, y| x...
I am trying to update my development environment to Apple Silicon (M1 Pro) with Monterey 12.0.1. Sketchup works fine, but when I launch Sketchup with the debugger it crashes immediately....
Look into whether the Ruby debugger offer Log Points - outputting value to the debug output instead of breaking. Useful when you want to trace values without wanting to break.
When I use the sketchup-ruby-debugger Sketchup 2019.2 Windows 10 Sometimes on some Errors Sketchup Crashes. Same Code in Sketchup 2019.1 I get the Error Message no Crash. May bee the...
I can see it on Win10(64bit) RM2019 -> SUPro2019(english ver) with SURubyDebugger.dll 1.2.0.0 with national encoded symbols in string variables! for example instead dname="1ящик" Rubymine shows in ‘watch’ window dname="1"...
Hi, There maybe a simple fix for this but as far as I can tell I followed the instructions [here](https://github.com/SketchUp/sketchup-ruby-api-tutorials/wiki/VSCode-Debugger-Setup) for setting the VSCode environment up for debugging ruby extensions...
``` Process: SketchUp [84858] Path: /Applications/SketchUp 2019/SketchUp.app/Contents/MacOS/SketchUp Identifier: com.sketchup.SketchUp.2019 Version: 19.0 (19.0.129) Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: SketchUp [84858] User ID: 1865548614 Date/Time: 2019-02-05 16:09:33.678 +0100...
How to send STDOUT and STDERR output to external debugger console instead of SketchUp's internal Ruby Console ? `puts()` seems not to work. On Windows I tried [`OutputDebugString`](https://msdn.microsoft.com/en-us/library/windows/desktop/aa363362(v=vs.85).aspx) and it...
When I set a breakpoint in VSCode, then try to remove it during a debug session it continues to break. In this current scenario where I observe that I set...
When will it be released?