Skip to content

v0.1.1

Compare
Choose a tag to compare
@github-actions github-actions released this 23 Nov 14:39
· 224 commits to main since this release

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.1.1")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_ruby",
    sha256 = "813963323ef591731993d1d7ee8dba6ac80064a46c290f1561559c1e433152dd",
    strip_prefix = "rules_ruby-0.1.1",
    url = "https://github.com/p0deje/rules_ruby/releases/download/v0.1.1/rules_ruby-v0.1.1.tar.gz",
)

What's Changed

New Contributors

Full Changelog: https://github.com/p0deje/rules_ruby/commits/v0.1.1