Open
Description
forgive my gradle newbieness, been walking thru the code but just could not figure out how to do the following
given:
jrubyJar "rubygems:colorize:0.7.7+"
jrubyJar "rubygems:sequel:5.0.0"
jrubyJar "rubygems:redis:4.0.0"
jrubyJar 'org.slf4j:slf4j-simple:1.7.25'
jrubyJar 'io.ratpack:ratpack-base:1.5.0'
jrubyJar 'io.ratpack:ratpack-core:1.5.0'
jrubyJar 'io.ratpack:ratpack-exec:1.5.0'
jrubyJar 'org.slf4j:slf4j-simple:1.7.25'
I want to create a task where I can retrieve the passed in strings to "jrubyJar" , ideally those prefixed by "rubygems:" and subsequently pass those to a ruby script
thanks