Skip to content

Commit

Permalink
bck
Browse files Browse the repository at this point in the history
  • Loading branch information
original-brownbear committed Oct 27, 2017
1 parent 6dd98a8 commit 297452b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,13 @@ verifyFile.onlyIf { doChecksum }

task installGems(dependsOn: [downloadAndInstallJRuby], type: Exec) {
workingDir projectDir
inputs.files file("$projectDir/Gemfile.template")
inputs.files fileTree("$projectDir/rakelib")
inputs.files fileTree("$projectDir/versions.yml")
outputs.files file("$projectDir/Gemfile")
outputs.files file("$projectDir/Gemfile.lock")
outputs.files fileTree("$projectDir/vendor/bundle")
outputs.files fileTree("$projectDir/vendor/jruby")
commandLine './vendor/jruby/bin/jruby', "${projectDir}/vendor/jruby/bin/rake".toString(), "vendor:gems", "test:install-core"
standardOutput = new ByteArrayOutputStream()
ext.output = {
Expand Down

0 comments on commit 297452b

Please sign in to comment.