Skip to content

Commit 9078db7

Browse files
committed
Follow repo move from oracle/truffleruby to truffleruby/truffleruby
1 parent 80a6f58 commit 9078db7

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,6 @@
590590
[JRuby]: https://jruby.org/
591591
[MagLev]: https://maglev.github.io/
592592
[MRuby]: https://github.com/mruby/mruby#readme
593-
[truffleruby]: https://github.com/oracle/truffleruby#readme
593+
[truffleruby]: https://github.com/truffleruby/truffleruby#readme
594594

595595
[ruby-versions]: https://github.com/postmodern/ruby-versions#readme

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ of [rbenv]
246246

247247
[Ruby]: https://www.ruby-lang.org/
248248
[JRuby]: https://jruby.org/
249-
[TruffleRuby]: https://github.com/oracle/truffleruby
249+
[TruffleRuby]: https://github.com/truffleruby/truffleruby
250250
[mruby]: https://github.com/mruby/mruby#readme
251251

252252
[Ubuntu]: https://ubuntu.com/

share/ruby-install/truffleruby-graalvm/functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [[ "$ruby_version" == "23.0.0" ]]; then
2828
elif (( truffleruby_major > 23 || (truffleruby_major == 23 && truffleruby_minor >= 1) )); then # 23.1+
2929
ruby_dir_name="truffleruby-$ruby_version-${graalvm_platform/darwin/macos}-$graalvm_arch"
3030
ruby_archive="${ruby_archive:-truffleruby-jvm-$ruby_version-${graalvm_platform/darwin/macos}-$graalvm_arch.tar.gz}"
31-
ruby_mirror="${ruby_mirror:-https://github.com/oracle/truffleruby/releases/download}"
31+
ruby_mirror="${ruby_mirror:-https://github.com/truffleruby/truffleruby/releases/download}"
3232
ruby_url="${ruby_url:-$ruby_mirror/graal-$ruby_version/$ruby_archive}"
3333
else
3434
ruby_dir_name="graalvm-ce-java11-$ruby_version"
@@ -43,7 +43,7 @@ fi
4343
function install_ruby()
4444
{
4545
if [[ "$install_dir" == '/usr/local' ]]; then
46-
error "Unsupported see https://github.com/oracle/truffleruby/issues/1389"
46+
error "Unsupported see https://github.com/truffleruby/truffleruby/issues/1389"
4747
return 1
4848
fi
4949

share/ruby-install/truffleruby/functions.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ if [[ "$ruby_version" == "23.0.0" ]]; then
3636

3737
ruby_url="${ruby_url:-$ruby_mirror/$truffleruby_artifact_id/content}"
3838
elif (( truffleruby_major > 23 || (truffleruby_major == 23 && truffleruby_minor >= 1) )); then # 23.1+
39-
ruby_mirror="${ruby_mirror:-https://github.com/oracle/truffleruby/releases/download}"
39+
ruby_mirror="${ruby_mirror:-https://github.com/truffleruby/truffleruby/releases/download}"
4040
ruby_url="${ruby_url:-$ruby_mirror/graal-$ruby_version/$ruby_archive}"
4141
else
42-
ruby_mirror="${ruby_mirror:-https://github.com/oracle/truffleruby/releases/download}"
42+
ruby_mirror="${ruby_mirror:-https://github.com/truffleruby/truffleruby/releases/download}"
4343
ruby_url="${ruby_url:-$ruby_mirror/vm-$ruby_version/$ruby_archive}"
4444
fi
4545

@@ -49,7 +49,7 @@ fi
4949
function install_ruby()
5050
{
5151
if [[ "$install_dir" == '/usr/local' ]]; then
52-
error "Unsupported see https://github.com/oracle/truffleruby/issues/1389"
52+
error "Unsupported see https://github.com/truffleruby/truffleruby/issues/1389"
5353
return 1
5454
fi
5555

test/truffleruby-graalvm-tests/functions_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ function test_ruby_mirror_default_value_when_ruby_version_is_greater_or_equal_to
244244
source "$ruby_install_dir/truffleruby-graalvm/functions.sh"
245245

246246
assertEquals "did not correctly set \$ruby_mirror" \
247-
"https://github.com/oracle/truffleruby/releases/download" \
247+
"https://github.com/truffleruby/truffleruby/releases/download" \
248248
"$ruby_mirror"
249249
}
250250

@@ -309,7 +309,7 @@ function test_ruby_url_default_value_when_ruby_version_is_greater_or_equal_to_23
309309
source "$ruby_install_dir/truffleruby/functions.sh" >/dev/null
310310

311311
assertEquals "did not correctly set \$ruby_url" \
312-
"https://github.com/oracle/truffleruby/releases/download/graal-$ruby_version/$ruby_archive" \
312+
"https://github.com/truffleruby/truffleruby/releases/download/graal-$ruby_version/$ruby_archive" \
313313
"$ruby_url"
314314
}
315315

test/truffleruby-tests/functions_tests.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ function test_ruby_mirror_default_value_when_ruby_version_is_greater_or_equal_to
303303
source "$ruby_install_dir/truffleruby/functions.sh"
304304

305305
assertEquals "did not correctly set \$ruby_mirror" \
306-
"https://github.com/oracle/truffleruby/releases/download" \
306+
"https://github.com/truffleruby/truffleruby/releases/download" \
307307
"$ruby_mirror"
308308
}
309309

@@ -316,7 +316,7 @@ function test_ruby_mirror_default_value_when_ruby_version_is_less_than_23_0_0()
316316
source "$ruby_install_dir/truffleruby/functions.sh"
317317

318318
assertEquals "did not correctly set \$ruby_mirror" \
319-
"https://github.com/oracle/truffleruby/releases/download" \
319+
"https://github.com/truffleruby/truffleruby/releases/download" \
320320
"$ruby_mirror"
321321
}
322322

@@ -381,7 +381,7 @@ function test_ruby_url_default_value_when_ruby_version_is_greater_or_equal_to_23
381381
source "$ruby_install_dir/truffleruby/functions.sh"
382382

383383
assertEquals "did not correctly set \$ruby_url" \
384-
"https://github.com/oracle/truffleruby/releases/download/graal-$ruby_version/$ruby_archive" \
384+
"https://github.com/truffleruby/truffleruby/releases/download/graal-$ruby_version/$ruby_archive" \
385385
"$ruby_url"
386386
}
387387

@@ -394,7 +394,7 @@ function test_ruby_url_default_value_when_ruby_version_is_less_than_23_0_0()
394394
source "$ruby_install_dir/truffleruby/functions.sh"
395395

396396
assertEquals "did not correctly set \$ruby_url" \
397-
"https://github.com/oracle/truffleruby/releases/download/vm-$ruby_version/$ruby_archive" \
397+
"https://github.com/truffleruby/truffleruby/releases/download/vm-$ruby_version/$ruby_archive" \
398398
"$ruby_url"
399399
}
400400

0 commit comments

Comments
 (0)