Skip to content

v0.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Nov 20:09
· 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.0")

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 = "3cd131af2865a008714aabb56c1db06f17bc1faaeca8d53322fe81da4d0ae01d",
    strip_prefix = "rules_ruby-0.1.0",
    url = "https://github.com/p0deje/rules_ruby/releases/download/v0.1.0/rules_ruby-v0.1.0.tar.gz",
)

What's Changed

New Contributors

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