Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Ruby to list of languages (take 2) #23

Merged
merged 3 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _cobalt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ site:
base_url: https://wasmtime.dev
posts:
rss: rss.xml
ignore:
- README.md
52 changes: 0 additions & 52 deletions _site/README.html

This file was deleted.

3 changes: 2 additions & 1 deletion _site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,12 @@ <h2>Language Support</h2>
the implementation:</p>
<ul>
<li><strong><a href="https://bytecodealliance.github.io/wasmtime/lang-rust.html">Rust</a></strong> - the <a href="https://crates.io/crates/wasmtime"><code>wasmtime</code> crate</a></li>
<li><strong><a href="https://bytecodealliance.github.io/wasmtime/examples-c-embed.html">C</a></strong> - the <a href="https://bytecodealliance.github.io/wasmtime/c-api/"><code>wasm.h</code>, <code>wasi.h</code>, and <code>wasmtime.h</code> headers</a>, <a href="crates/c-api/CMakeLists.txt">CMake</a> or <a href="https://conan.io/center/wasmtime"><code>wasmtime</code> Conan package</a></li>
<li><strong><a href="https://bytecodealliance.github.io/wasmtime/examples-c-embed.html">C</a></strong> - the <a href="https://bytecodealliance.github.io/wasmtime/c-api/"><code>wasm.h</code>, <code>wasi.h</code>, and <code>wasmtime.h</code> headers</a>, <a href="https://github.com/bytecodealliance/wasmtime/blob/main/crates/c-api/CMakeLists.txt">CMake</a> or <a href="https://conan.io/center/wasmtime"><code>wasmtime</code> Conan package</a></li>
<li><strong><a href="https://github.com/bytecodealliance/wasmtime-cpp">C++</a></strong> - the <a href="https://github.com/bytecodealliance/wasmtime-cpp"><code>wasmtime-cpp</code> repository</a> or use <a href="https://conan.io/center/wasmtime-cpp"><code>wasmtime-cpp</code> Conan package</a></li>
<li><strong><a href="https://bytecodealliance.github.io/wasmtime/lang-python.html">Python</a></strong> - the <a href="https://pypi.org/project/wasmtime/"><code>wasmtime</code> PyPI package</a></li>
<li><strong><a href="https://bytecodealliance.github.io/wasmtime/lang-dotnet.html">.NET</a></strong> - the <a href="https://www.nuget.org/packages/Wasmtime"><code>Wasmtime</code> NuGet package</a></li>
<li><strong><a href="https://bytecodealliance.github.io/wasmtime/lang-go.html">Go</a></strong> - the <a href="https://pkg.go.dev/github.com/bytecodealliance/wasmtime-go"><code>wasmtime-go</code> repository</a></li>
<li><strong><a href="https://bytecodealliance.github.io/wasmtime/lang-ruby.html">Ruby</a></strong> - the <a href="https://rubygems.org/gems/wasmtime"><code>wasmtime</code> gem</a></li>
</ul>
</div>
</section>
Expand Down
6 changes: 5 additions & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,16 +177,18 @@ You can use Wasmtime from a variety of different languages through embeddings of
the implementation:

* **[Rust]** - the [`wasmtime` crate]
* **[C]** - the [`wasm.h`, `wasi.h`, and `wasmtime.h` headers][c-headers], [CMake](crates/c-api/CMakeLists.txt) or [`wasmtime` Conan package]
* **[C]** - the [`wasm.h`, `wasi.h`, and `wasmtime.h` headers][c-headers], [CMake] or [`wasmtime` Conan package]
* **[C++]** - the [`wasmtime-cpp` repository][C++] or use [`wasmtime-cpp` Conan package]
* **[Python]** - the [`wasmtime` PyPI package]
* **[.NET]** - the [`Wasmtime` NuGet package]
* **[Go]** - the [`wasmtime-go` repository]
* **[Ruby]** - the [`wasmtime` gem]

[Rust]: https://bytecodealliance.github.io/wasmtime/lang-rust.html
[C]: https://bytecodealliance.github.io/wasmtime/examples-c-embed.html
[`wasmtime` crate]: https://crates.io/crates/wasmtime
[c-headers]: https://bytecodealliance.github.io/wasmtime/c-api/
[CMake]: https://github.com/bytecodealliance/wasmtime/blob/main/crates/c-api/CMakeLists.txt
[Python]: https://bytecodealliance.github.io/wasmtime/lang-python.html
[`wasmtime` PyPI package]: https://pypi.org/project/wasmtime/
[.NET]: https://bytecodealliance.github.io/wasmtime/lang-dotnet.html
Expand All @@ -196,6 +198,8 @@ the implementation:
[C++]: https://github.com/bytecodealliance/wasmtime-cpp
[`wasmtime` Conan package]: https://conan.io/center/wasmtime
[`wasmtime-cpp` Conan package]: https://conan.io/center/wasmtime-cpp
[Ruby]: https://bytecodealliance.github.io/wasmtime/lang-ruby.html
[`wasmtime` gem]: https://rubygems.org/gems/wasmtime

</div>
</section>
Expand Down
Loading