Skip to content

Commit c8e1b11

Browse files
committed
Follow repo move from oracle/truffleruby to truffleruby/truffleruby
1 parent 434c4c5 commit c8e1b11

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Prism has been integrated into the majority of Ruby runtimes, many libraries, an
116116
* [JRuby](https://github.com/jruby/jruby/pull/8103) (via Java)
117117
* [Natalie](https://github.com/natalie-lang/natalie/pull/1213) (via C++ and Ruby)
118118
* [Opal](https://github.com/opal/opal/pull/2642) (via Ruby and WASM)
119-
* [TruffleRuby](https://github.com/oracle/truffleruby/issues/3117) (via Java)
119+
* [TruffleRuby](https://github.com/truffleruby/truffleruby/issues/3117) (via Java)
120120

121121
### Libraries
122122

docs/build_system.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ prism's `Makefile` is not used at all in CRuby. Instead, CRuby's `Makefile` is u
5858

5959
### Building prism as part of TruffleRuby
6060

61-
[This script](https://github.com/oracle/truffleruby/blob/master/tool/import-prism.sh) imports prism sources in TruffleRuby.
61+
[This script](https://github.com/truffleruby/truffleruby/blob/master/tool/import-prism.sh) imports prism sources in TruffleRuby.
6262
The script generates the templates when importing.
6363

6464
Then when `mx build` builds TruffleRuby and the `prism` mx project inside, it runs `make`.
6565

66-
Then the `prism bindings` mx project is built, which contains the [bindings](https://github.com/oracle/truffleruby/blob/vm-24.1.1/src/main/c/yarp_bindings/src/yarp_bindings.c)
66+
Then the `prism bindings` mx project is built, which contains the [bindings](https://github.com/truffleruby/truffleruby/blob/vm-24.1.1/src/main/c/yarp_bindings/src/yarp_bindings.c)
6767
and links to `libprism.a` (to avoid exporting symbols, so no conflict when installing the prism gem).
6868

6969
### Building prism as part of JRuby

docs/cruby_compilation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Compiling Prism's AST
22

3-
One important class of consumers of Prism's AST is compilers. Currently [CRuby](https://github.com/ruby/ruby), [JRuby](https://github.com/jruby/jruby), [TruffleRuby](https://github.com/oracle/truffleruby), and [Natalie](https://github.com/natalie-lang/natalie) have all built compilation code on top of Prism's AST.
3+
One important class of consumers of Prism's AST is compilers. Currently [CRuby](https://github.com/ruby/ruby), [JRuby](https://github.com/jruby/jruby), [TruffleRuby](https://github.com/truffleruby/truffleruby), and [Natalie](https://github.com/natalie-lang/natalie) have all built compilation code on top of Prism's AST.
44

55
This document will describe, at a high level, how CRuby's compilation of Prism's AST works.
66

include/prism.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ PRISM_EXPORTED_FUNCTION pm_string_query_t pm_string_query_method_name(const uint
314314
* dependencies. It is currently being integrated into
315315
* [CRuby](https://github.com/ruby/ruby),
316316
* [JRuby](https://github.com/jruby/jruby),
317-
* [TruffleRuby](https://github.com/oracle/truffleruby),
317+
* [TruffleRuby](https://github.com/truffleruby/truffleruby),
318318
* [Sorbet](https://github.com/sorbet/sorbet), and
319319
* [Syntax Tree](https://github.com/ruby-syntax-tree/syntax_tree).
320320
*

0 commit comments

Comments
 (0)