/* * Copyright 2000-2012 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package jetbrains.buildServer.agent.rakerunner; import org.jetbrains.annotations.NonNls; /** * @author Roman.Chernyatchik * @author Vladislav.Rassokhin */ public interface SharedRubyEnvSettings { @NonNls String SHARED_RUBY_PARAMS_TYPE = "teamcity.ruby.shared.params.type"; @NonNls String SHARED_RUBY_PARAMS_ARE_APPLIED = "teamcity.ruby.shared.params.are.applied"; @NonNls String SHARED_RUBY_INTERPRETER_PATH = "teamcity.ruby.shared.interpreter.path"; @NonNls String SHARED_RUBY_RVM_SDK_NAME = "teamcity.ruby.shared.rvm.sdk.name"; @NonNls String SHARED_RUBY_RVM_GEMSET_NAME = "teamcity.ruby.shared.rvm.gemset"; @NonNls String SHARED_RUBY_RVM_GEMSET_CREATE = "teamcity.ruby.shared.rvm.gemset.create"; @NonNls String SHARED_RUBY_RVM_RVMRC_PATH = "teamcity.ruby.shared.rvm.rvmrc.path"; }