Skip to content

Instantly share code, notes, and snippets.

@rtyler
Created May 6, 2015 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtyler/6849b0fda94995431234 to your computer and use it in GitHub Desktop.
Save rtyler/6849b0fda94995431234 to your computer and use it in GitHub Desktop.
plugins {
id "com.github.jruby-gradle.base" version "0.1.15"
}
jruby.execVersion '9.0.0.0.pre2'
//jruby.execVersion '1.7.20'
import com.github.jrubygradle.JRubyExec
task run(type: JRubyExec) {
systemProperties 'jruby.debug.fullTrace' : 'true',
'jruby.backtrace.style' : 'true'
script 'test.rb'
}
require 'yaml'
puts "Working on #{JRUBY_VERSION}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment