File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
base-plugin/src/main/groovy/com/github/jrubygradle/internal Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ class JRubyExecUtils {
175
175
cmdArgs. addAll(jrubyArgs)
176
176
177
177
if (useBinPath && script != null ) {
178
- if (script. isAbsolute() && (! script. exists())) {
178
+ if (script. absolute && (! script. exists())) {
179
179
throw new InvalidUserDataException (" ${ script} does not exist" )
180
180
}
181
181
cmdArgs. add(script. toString())
@@ -184,7 +184,7 @@ class JRubyExecUtils {
184
184
throw new InvalidUserDataException (' No `script` property defined and no inline script provided' )
185
185
}
186
186
187
- if (jrubyArgs. isEmpty() ) {
187
+ if (jrubyArgs. empty ) {
188
188
throw new InvalidUserDataException (' Cannot build JRuby execution arguments with either `script` or `jrubyArgs` set' )
189
189
}
190
190
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
}
6
6
dependencies {
7
7
/* wow. so recursion */
8
- classpath " com.github.jruby-gradle:jruby-gradle-plugin:1.0.3 "
8
+ classpath " com.github.jruby-gradle:jruby-gradle-plugin:1.1.1 "
9
9
}
10
10
}
11
11
apply plugin : ' org.ajoberstar.github-pages'
Original file line number Diff line number Diff line change 1
- version =2.1.0-beta.0
1
+ version =2.1.0-beta.1
2
2
group =com.github.jruby-gradle
3
3
copyrightYear =2014-2023
4
4
You can’t perform that action at this time.
0 commit comments