├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── convert.rb ├── models └── rvm_wrapper.rb ├── rvm.pluginspec ├── spec ├── models │ └── rvm_wrapper_spec.rb ├── spec_helper.rb └── support │ ├── JENKINS_1_540 │ ├── RUBY_RUNTIME_0_12 │ ├── classes │ ├── META-INF │ │ ├── annotations │ │ │ └── hudson.Extension │ │ └── services │ │ │ └── hudson.Plugin │ ├── core_ext │ │ └── print_stream.rb │ ├── jenkins │ │ └── ruby │ │ │ ├── DoDynamic.class │ │ │ └── Get.class │ └── ruby │ │ ├── ModelReloadAction.class │ │ ├── PluginImpl.class │ │ ├── RubyExtensionFinder$ExtensionComponentSetImpl.class │ │ ├── RubyExtensionFinder.class │ │ ├── RubyPlugin$1.class │ │ ├── RubyPlugin.class │ │ ├── RubyPluginRuntimeResolver.class │ │ ├── RubyRuntimePlugin.class │ │ ├── ScriptingContainerHolder.class │ │ └── impl │ │ └── LookupTable.class │ └── lib │ ├── acegi-security-1.0.7.jar │ ├── antlr-2.7.6.jar │ ├── args4j-2.0.23.jar │ ├── cli-1.540.jar │ ├── commons-beanutils-1.8.3.jar │ ├── commons-collections-3.2.1.jar │ ├── commons-discovery-0.4.jar │ ├── commons-fileupload-1.2.1.jar │ ├── commons-io-1.4.jar │ ├── commons-jelly-1.1-jenkins-20120928.jar │ ├── commons-lang-2.6.jar │ ├── commons-logging-1.1.3.jar │ ├── ezmorph-1.0.6.jar │ ├── guava-11.0.1.jar │ ├── jenkins-core-1.540.jar │ ├── json-lib-2.4-jenkins-2.jar │ ├── localizer-1.10.jar │ ├── remoting-2.33.jar │ ├── servlet-api-2.5.jar │ ├── spring-core-2.5.6.SEC03.jar │ ├── stapler-1.222.jar │ ├── task-reactor-1.4.jar │ ├── token-macro-1.9.jar │ ├── xmlpull-1.1.3.1.jar │ └── xstream-1.4.4-jenkins-4.jar └── views └── rvm_wrapper └── config.erb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/convert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/bin/convert.rb -------------------------------------------------------------------------------- /models/rvm_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/models/rvm_wrapper.rb -------------------------------------------------------------------------------- /rvm.pluginspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/rvm.pluginspec -------------------------------------------------------------------------------- /spec/models/rvm_wrapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/models/rvm_wrapper_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/JENKINS_1_540: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/support/RUBY_RUNTIME_0_12: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/support/classes/META-INF/annotations/hudson.Extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/META-INF/annotations/hudson.Extension -------------------------------------------------------------------------------- /spec/support/classes/META-INF/services/hudson.Plugin: -------------------------------------------------------------------------------- 1 | ruby.RubyRuntimePlugin -------------------------------------------------------------------------------- /spec/support/classes/core_ext/print_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/core_ext/print_stream.rb -------------------------------------------------------------------------------- /spec/support/classes/jenkins/ruby/DoDynamic.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/jenkins/ruby/DoDynamic.class -------------------------------------------------------------------------------- /spec/support/classes/jenkins/ruby/Get.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/jenkins/ruby/Get.class -------------------------------------------------------------------------------- /spec/support/classes/ruby/ModelReloadAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/ruby/ModelReloadAction.class -------------------------------------------------------------------------------- /spec/support/classes/ruby/PluginImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/ruby/PluginImpl.class -------------------------------------------------------------------------------- /spec/support/classes/ruby/RubyExtensionFinder$ExtensionComponentSetImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/ruby/RubyExtensionFinder$ExtensionComponentSetImpl.class -------------------------------------------------------------------------------- /spec/support/classes/ruby/RubyExtensionFinder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/ruby/RubyExtensionFinder.class -------------------------------------------------------------------------------- /spec/support/classes/ruby/RubyPlugin$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/ruby/RubyPlugin$1.class -------------------------------------------------------------------------------- /spec/support/classes/ruby/RubyPlugin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/ruby/RubyPlugin.class -------------------------------------------------------------------------------- /spec/support/classes/ruby/RubyPluginRuntimeResolver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/ruby/RubyPluginRuntimeResolver.class -------------------------------------------------------------------------------- /spec/support/classes/ruby/RubyRuntimePlugin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/ruby/RubyRuntimePlugin.class -------------------------------------------------------------------------------- /spec/support/classes/ruby/ScriptingContainerHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/ruby/ScriptingContainerHolder.class -------------------------------------------------------------------------------- /spec/support/classes/ruby/impl/LookupTable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/classes/ruby/impl/LookupTable.class -------------------------------------------------------------------------------- /spec/support/lib/acegi-security-1.0.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/acegi-security-1.0.7.jar -------------------------------------------------------------------------------- /spec/support/lib/antlr-2.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/antlr-2.7.6.jar -------------------------------------------------------------------------------- /spec/support/lib/args4j-2.0.23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/args4j-2.0.23.jar -------------------------------------------------------------------------------- /spec/support/lib/cli-1.540.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/cli-1.540.jar -------------------------------------------------------------------------------- /spec/support/lib/commons-beanutils-1.8.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/commons-beanutils-1.8.3.jar -------------------------------------------------------------------------------- /spec/support/lib/commons-collections-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/commons-collections-3.2.1.jar -------------------------------------------------------------------------------- /spec/support/lib/commons-discovery-0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/commons-discovery-0.4.jar -------------------------------------------------------------------------------- /spec/support/lib/commons-fileupload-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/commons-fileupload-1.2.1.jar -------------------------------------------------------------------------------- /spec/support/lib/commons-io-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/commons-io-1.4.jar -------------------------------------------------------------------------------- /spec/support/lib/commons-jelly-1.1-jenkins-20120928.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/commons-jelly-1.1-jenkins-20120928.jar -------------------------------------------------------------------------------- /spec/support/lib/commons-lang-2.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/commons-lang-2.6.jar -------------------------------------------------------------------------------- /spec/support/lib/commons-logging-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/commons-logging-1.1.3.jar -------------------------------------------------------------------------------- /spec/support/lib/ezmorph-1.0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/ezmorph-1.0.6.jar -------------------------------------------------------------------------------- /spec/support/lib/guava-11.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/guava-11.0.1.jar -------------------------------------------------------------------------------- /spec/support/lib/jenkins-core-1.540.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/jenkins-core-1.540.jar -------------------------------------------------------------------------------- /spec/support/lib/json-lib-2.4-jenkins-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/json-lib-2.4-jenkins-2.jar -------------------------------------------------------------------------------- /spec/support/lib/localizer-1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/localizer-1.10.jar -------------------------------------------------------------------------------- /spec/support/lib/remoting-2.33.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/remoting-2.33.jar -------------------------------------------------------------------------------- /spec/support/lib/servlet-api-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/servlet-api-2.5.jar -------------------------------------------------------------------------------- /spec/support/lib/spring-core-2.5.6.SEC03.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/spring-core-2.5.6.SEC03.jar -------------------------------------------------------------------------------- /spec/support/lib/stapler-1.222.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/stapler-1.222.jar -------------------------------------------------------------------------------- /spec/support/lib/task-reactor-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/task-reactor-1.4.jar -------------------------------------------------------------------------------- /spec/support/lib/token-macro-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/token-macro-1.9.jar -------------------------------------------------------------------------------- /spec/support/lib/xmlpull-1.1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/xmlpull-1.1.3.1.jar -------------------------------------------------------------------------------- /spec/support/lib/xstream-1.4.4-jenkins-4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/spec/support/lib/xstream-1.4.4-jenkins-4.jar -------------------------------------------------------------------------------- /views/rvm_wrapper/config.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/rvm-plugin/HEAD/views/rvm_wrapper/config.erb --------------------------------------------------------------------------------