From 9bafedc17b6c2f750907deb902ffca7e313e1d16 Mon Sep 17 00:00:00 2001 From: Cody Cutrer Date: Mon, 30 Jan 2023 16:12:48 -0700 Subject: [PATCH] [jrubyscripting] don't use options for check for updates config boolean (#14299) Signed-off-by: Cody Cutrer --- .../src/main/resources/OH-INF/config/config.xml | 4 ---- .../src/main/resources/OH-INF/i18n/jruby.properties | 2 -- 2 files changed, 6 deletions(-) diff --git a/bundles/org.openhab.automation.jrubyscripting/src/main/resources/OH-INF/config/config.xml b/bundles/org.openhab.automation.jrubyscripting/src/main/resources/OH-INF/config/config.xml index 50b356ee2..b1f6761f4 100644 --- a/bundles/org.openhab.automation.jrubyscripting/src/main/resources/OH-INF/config/config.xml +++ b/bundles/org.openhab.automation.jrubyscripting/src/main/resources/OH-INF/config/config.xml @@ -41,10 +41,6 @@ Check RubyGems for updates to the above gems when OpenHAB starts or JRuby settings are changed. Otherwise it will try to fulfill the requirements with locally installed gems, and you can manage them yourself with an external Ruby by setting the same GEM_HOME. - - - - true true diff --git a/bundles/org.openhab.automation.jrubyscripting/src/main/resources/OH-INF/i18n/jruby.properties b/bundles/org.openhab.automation.jrubyscripting/src/main/resources/OH-INF/i18n/jruby.properties index 2fb8b2a96..eeb6a6f0e 100644 --- a/bundles/org.openhab.automation.jrubyscripting/src/main/resources/OH-INF/i18n/jruby.properties +++ b/bundles/org.openhab.automation.jrubyscripting/src/main/resources/OH-INF/i18n/jruby.properties @@ -1,7 +1,5 @@ automation.config.jruby.check_update.label = Check for Gem Updates automation.config.jruby.check_update.description = Check RubyGems for updates to the above gems when OpenHAB starts or JRuby settings are changed. Otherwise it will try to fulfill the requirements with locally installed gems, and you can manage them yourself with an external Ruby by setting the same GEM_HOME. -automation.config.jruby.check_update.option.true = Check For Updates -automation.config.jruby.check_update.option.false = Do Not Check For Updates automation.config.jruby.dependency_tracking.label = Enable Dependency Tracking automation.config.jruby.dependency_tracking.description = Dependency tracking allows your scripts to automatically reload when one of its dependencies is updated. You may want to disable dependency tracking if you plan on editing or updating a shared library, but don't want all your scripts to reload until you can test it. automation.config.jruby.gem_home.label = GEM_HOME