v0.19.0
Using Bzlmod with Bazel 7-8
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.19.0")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.19.0")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "2eca309f897a93d16454b1b494bc1f8c18035d7dba5a689c360434d4c88c8cef",
strip_prefix = "rules_ruby-0.19.0",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.19.0/rules_ruby-v0.19.0.tar.gz",
)
What's Changed
- Apply
neverlink = True
tojars
by @JasonLunn in #226 - Add NETRC read support for rb_bundle_fetch to support authentication by @noahkawasakigoogle in #222
- docs: .netrc auth by @p0deje in #230
- chore: bump rubies by @p0deje in #229
- fix: compatibility with bazel 6 by @p0deje in #231
New Contributors
- @JasonLunn made their first contribution in #226
- @noahkawasakigoogle made their first contribution in #222
Full Changelog: v0.18.0...v0.19.0