You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/wasm-languages/ruby.md
+20-16Lines changed: 20 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ $ cd hello-ruby
79
79
```
80
80
81
81
Now fetch a copy of the Ruby source from the [official releases](https://github.com/ruby/ruby.wasm/releases).
82
-
For this example, we are downloading the `ruby-head-wasm32-unknown-wasi-full.tar.gz` version,
82
+
For this example, we are downloading the `ruby-head-wasm32-unknown-wasip1-full.tar.gz` version,
83
83
but one of the smaller versions works just as well.
84
84
85
85
Now create a local `lib` dir where we will put our own source.
@@ -96,7 +96,7 @@ At this point, our directory should look like this:
96
96
$ tree -L 2 -a -d
97
97
.
98
98
├── .gem
99
-
├── head-wasm32-unknown-wasi-full
99
+
├── ruby-head-wasm32-unknown-wasip1-full
100
100
│ ├── usr
101
101
│ └── var
102
102
└── lib
@@ -122,25 +122,25 @@ Hello, World
122
122
Ruby is a scripting language, which means it will need to load a number of scripts (ours plus all of the built-in libraries) off of its filesystem. The `spin.toml` file for Ruby is more complex than most:
0 commit comments