(Will require #25 from jruby-gradle-plugin)
Just brain dumping some ideas right now:
If build.gradle had a method such as enableRake() that could load a Rakefile from the $CWD and provide wrapper tasks for all the Rake tasks defined.
For example: rake build could turn into the gradle task rakeBuild. rake assets:clean could turn into rakeAssetsClean
Another option would be to just create a task that would create a ScriptingContainer to execute Rake inside of and let Rake handle everything underneath.
See the previous discussion in this old issue (cc @ysb33r)
(Will require #25 from jruby-gradle-plugin)
Just brain dumping some ideas right now:
If
build.gradlehad a method such asenableRake()that could load aRakefilefrom the$CWDand provide wrapper tasks for all the Rake tasks defined.For example:
rake buildcould turn into the gradle taskrakeBuild.rake assets:cleancould turn intorakeAssetsCleanAnother option would be to just create a task that would create a
ScriptingContainerto execute Rake inside of and let Rake handle everything underneath.See the previous discussion in this old issue (cc @ysb33r)