Skip to content

Commit 4fba3bb

Browse files
committed
Bump version to 2.1.0-beta.1
1 parent efe6ed2 commit 4fba3bb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

base-plugin/src/main/groovy/com/github/jrubygradle/internal/JRubyExecUtils.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ class JRubyExecUtils {
175175
cmdArgs.addAll(jrubyArgs)
176176

177177
if (useBinPath && script != null) {
178-
if (script.isAbsolute() && (!script.exists())) {
178+
if (script.absolute && (!script.exists())) {
179179
throw new InvalidUserDataException("${script} does not exist")
180180
}
181181
cmdArgs.add(script.toString())
@@ -184,7 +184,7 @@ class JRubyExecUtils {
184184
throw new InvalidUserDataException('No `script` property defined and no inline script provided')
185185
}
186186

187-
if (jrubyArgs.isEmpty()) {
187+
if (jrubyArgs.empty) {
188188
throw new InvalidUserDataException('Cannot build JRuby execution arguments with either `script` or `jrubyArgs` set')
189189
}
190190
}

docs/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66
dependencies {
77
/* 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"
99
}
1010
}
1111
apply plugin: 'org.ajoberstar.github-pages'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=2.1.0-beta.0
1+
version=2.1.0-beta.1
22
group=com.github.jruby-gradle
33
copyrightYear=2014-2023
44

0 commit comments

Comments
 (0)