Skip to content

Releases: bazel-contrib/rules_ruby

v0.1.1

23 Nov 14:39
Compare
Choose a tag to compare

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

v0.1.0

21 Nov 20:09
Compare
Choose a tag to compare

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