Created
November 7, 2020 21:40
-
-
Save boc-tothefuture/cdfa440e9fa59132f256fa1d64a95401 to your computer and use it in GitHub Desktop.
Importing into Context
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def debug_variables() | |
pp "Instance #{instance_variables}" | |
pp "Global #{global_variables}" | |
pp "Load Path #{$LOAD_PATH}" | |
# pp "Constants #{Module.constants}" | |
end | |
puts "Checking for Automation manager: #{$automationManager.nil?}" | |
until $automationManager | |
puts "Automation manager not loaded: #{$automationManager.nil?}" | |
$scriptExtension.importPreset('RuleSupport') | |
$foo="bar" | |
debug_variables() | |
sleep 10 | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment