Skip to content

Commit ebde4d4

Browse files
committed
Fix notations of ruby.wasm
1 parent 83083b1 commit ebde4d4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Ruby Wasmくじ引き
1+
# ruby.wasmくじ引き
22

33
[![GitHub](https://img.shields.io/badge/GitHub-increments%2Frubykaigi--2025--ruby--wasm--lottery-green?style=flat-square&logo=github)](https://github.com/increments/rubykaigi-2025-ruby-wasm-lottery)
44

5-
RubyKaigi 2025 Qiitaブース展示用のRuby WebAssemblyデモアプリケーションです。ruby-wasm-vdomを使用したインタラクティブなくじ引きゲームを実装しています。
5+
RubyKaigi 2025 Qiitaブース展示用のruby.wasmデモアプリケーションです。ruby-wasm-vdomを使用したインタラクティブなくじ引きゲームを実装しています。
66

77
[こちらからデモを試せます](https://increments.github.io/rubykaigi-2025-ruby-wasm-lottery/)
88

@@ -12,7 +12,7 @@ RubyKaigi 2025 Qiitaブース展示用のRuby WebAssemblyデモアプリケー
1212

1313
## 特徴
1414

15-
- **Ruby Wasm**: ブラウザ上でRubyコードを実行
15+
- **ruby.wasm**: ブラウザ上でRubyコードを実行
1616
- **Virtual DOM**: 効率的なDOM更新による高速なUIレンダリング
1717
- **インタラクティブ抽選**: 確率ベースのくじ引きロジック
1818
- **アニメーション効果**: 抽選中の動的な視覚効果と紙吹雪
@@ -26,7 +26,7 @@ RubyKaigi 2025 Qiitaブース展示用のRuby WebAssemblyデモアプリケー
2626

2727
## 技術スタック
2828

29-
- [Ruby Wasm](https://github.com/ruby/ruby.wasm): ブラウザで実行可能なRuby
29+
- [ruby.wasm](https://github.com/ruby/ruby.wasm): ブラウザで実行可能なRuby
3030
- [ruby-wasm-vdom](https://github.com/getty104/ruby-wasm-vdom): Ruby WasmとVirtual DOMの統合
3131
- HTML5 / CSS3: モダンなUI実装
3232
- JavaScript: ブラウザAPIとのインターフェース

docs/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Ruby Wasmくじ引き</title>
6+
<title>ruby.wasmくじ引き</title>
77
<style>
88
/* ベーススタイル */
99
* {
@@ -706,14 +706,14 @@
706706

707707
# メインコンテナ
708708
h(:div, { class: "lottery-container" }, [
709-
h(:h1, {}, ["✨ Ruby Wasmくじ引き ✨"]),
709+
h(:h1, {}, ["✨ ruby.wasmくじ引き ✨"]),
710710
h(:div, { class: "lottery-box" }, [content]),
711711
h(:button, {
712712
onclick: ->(e) { actions[:draw_lottery].call(state, { actions: actions }) },
713713
disabled: state[:drawing] ? true : nil
714714
}.compact, [button_text]),
715715
h(:div, { class: "event-info" }, [
716-
"RubyKaigi 2025 Qiitaブース展示 - ruby-wasm-vdomデモアプリケーション - Authored by Cline and Qiita developers"
716+
"RubyKaigi 2025 Qiitaブース展示 - ruby.wasmとruby-wasm-vdomによるデモアプリケーション - Authored by Cline and Qiita developers"
717717
])
718718
])
719719
}

0 commit comments

Comments
 (0)