Skip to content

Commit 48ef356

Browse files
committed
chore: ruby-next 1.1.0 + ruby 3.4
1 parent 3de260a commit 48ef356

File tree

5 files changed

+14
-16
lines changed

5 files changed

+14
-16
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
toolchain: 1.74.0
1818
- uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: 3.2
20+
ruby-version: 3.3
2121
bundler-cache: true
2222
- name: Setup yarn
2323
run: npm install -g yarn
@@ -43,7 +43,7 @@ jobs:
4343
- name: Build ruby.wasm
4444
if: steps.cache-ruby-wasm-module.outputs.cache-hit != 'true'
4545
run: |
46-
bundle exec rbwasm build -o src/ruby.wasm --ruby-version 3.2
46+
bundle exec rbwasm build -o src/ruby.wasm --ruby-version 3.3
4747
- name: Build web app
4848
run: |
4949
yarn install

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ source "https://rubygems.org"
44

55
gem "js", "~> 2.5" unless ENV["JS"] == "false"
66
gem "ruby_wasm", "~> 2.5"
7-
gem "ruby-next", "~> 1.0.3"
7+
gem "ruby-next", "~> 1.1.0"

Gemfile.lock

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,22 @@ GEM
55
diff-lcs (1.5.1)
66
js (2.5.0)
77
paco (0.2.3)
8-
parser (3.3.1.0)
8+
parser (3.3.7.0)
99
ast (~> 2.4.1)
1010
racc
11-
racc (1.7.3)
11+
racc (1.8.1)
1212
require-hooks (0.2.2)
13-
ruby-next (1.0.3)
13+
ruby-next (1.1.0)
1414
paco (~> 0.2)
1515
require-hooks (~> 0.2)
16-
ruby-next-core (= 1.0.3)
17-
ruby-next-parser (>= 3.2.2.0)
16+
ruby-next-core (= 1.1.0)
17+
ruby-next-parser (>= 3.4.0.2)
1818
unparser (~> 0.6.0)
19-
ruby-next-core (1.0.3)
20-
ruby-next-parser (3.2.2.0)
19+
ruby-next-core (1.1.0)
20+
ruby-next-parser (3.4.0.2)
2121
parser (>= 3.0.3.1)
2222
ruby_wasm (2.5.0)
23-
ruby_wasm (2.5.0-aarch64-linux)
24-
ruby_wasm (2.5.0-arm64-darwin)
25-
ruby_wasm (2.5.0-x86_64-linux)
26-
unparser (0.6.13)
23+
unparser (0.6.15)
2724
diff-lcs (~> 1.3)
2825
parser (>= 3.3.0)
2926

@@ -35,7 +32,7 @@ PLATFORMS
3532

3633
DEPENDENCIES
3734
js (~> 2.5)
38-
ruby-next (~> 1.0.3)
35+
ruby-next (~> 1.1.0)
3936
ruby_wasm (~> 2.5)
4037

4138
BUNDLED WITH

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Play with Ruby Next right in the browser (powered by [ruby.wasm](https://github.
2323
Use the following command:
2424

2525
```sh
26-
bundle exec rbwasm build -o src/ruby.wasm --ruby-version 3.2
26+
bundle exec rbwasm build -o src/ruby.wasm --ruby-version 3.3
2727
```
2828

2929
This would build a JS-compatible WASM module. To build JS-free WASM module, use the `JS=false` env var.

src/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ <h1 class="text-2xl">Playground</h1>
6363
<sl-option value="3.1.0">3.1.0</sl-option>
6464
<sl-option value="3.2.0">3.2.0</sl-option>
6565
<sl-option value="3.3.0">3.3.0</sl-option>
66+
<sl-option value="3.4.0">3.4.0</sl-option>
6667
</sl-select>
6768
<sl-button variant="success" target="run-btn" >
6869
<span class="flex flex-row items-center">

0 commit comments

Comments
 (0)