- creator: Aerilius
- version: 3.2.0
- ➡️ go
description 🔗
This is a powerful Ruby Console consisting of a console and a file editor with integrated help, autocompletion and code highlighting. It lets you open multiple independent instances of the console and remembers the command history over sessions.
Usage 🔗
Menu: Window → Ruby Console+
There are two modes (Ctrl-Tab ↹):
-
The console is a command line interface to try out codes and inspect return values.
With the Enter ↵ key, code will be evaluated (use ⇧ Shift-Enter ↵ for line breaks, or configure it in the settings menu). -
The editor is a full-featured text editor. Here you turn code into a script and save it as a file.
Donations 🔗
If you found this extension useful, you can leave a tip!
Development 🔗
This is an open-source project!
Features 🔗
-
Tutorials: You don’t know any programming? No problem, because SketchUp is the coolest opportunity to get started and it’s super easy with the famous “Try Ruby” interactive tutorial that is included with this extension.
-
Autocompletion and doc tooltips: Intelligent live autocompletion tells you not only which methods you can call next on a reference but provides you also with detailed info on how to correctly use them. Use Tab ↹ to accept a suggestion.
-
Entity inspection: Hover an entity or point in the console output and you will see it highlighted in the model.
-
Get a reference to an entity in the model by picking it with the pointer.
No more selecting and doingSketchup.active_model.selection[0]
. By holding the Ctrl key when the main window is focused, you can select points instead of entities and by holding the ⇧ Shift key you can turn on inferencing. -
Remembers which scripts you reload and reloads scripts automatically whenever they are changed.
-
Clear the console (Ctrl- L )
-
Open online documentation for the currently focused word (beta) (Ctrl- Q )
-
Menu with preferences
-
Binding: An advanced feature that allows to step into an object or class and call methods or access instance variables as if you were locally inside of the class source definition. Try to set binding to
Math
and you can directly call math functions likesqrt
without NameError.