rules_ruby
rules_ruby copied to clipboard
Ruby ruleset for Bazel
Akin to theoremlp/rules_multitool#29, as an addition to the existing support in binary.bzl, it would be great to also have a convenience target that makes it easier to `bazel run` the...
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/bazel-contrib/rules_ruby). ## Open The following updates have all...
[](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [bazel](https://togithub.com/bazelbuild/bazel) | patch | `7.1.1` -> `7.1.2` | --- ### Release Notes bazelbuild/bazel...
See https://github.com/bazel-contrib/rules_ruby/issues/16 for original discussion
There's a TODO introduced, see thread: https://github.com/p0deje/rules_ruby/pull/17#discussion_r1398271819
> Note, this is "nice to have", maybe not a requirement for a 1.0 of rules_ruby. Use case: I'm in a monorepo where one app has 1000 giant dependencies. I...
See https://github.com/bazel-contrib/rules_ruby/issues/16 for original discussion
A TODO for this was introduced in #48 https://github.com/bazel-contrib/rules_ruby/pull/48/files#diff-b803fcb7f17ed9235f1e5cb1fcd2f5d3b2838429d4368ae4c57ce4436577f03fR48 Try removing the exclusion and see if there's a way to fix it.
### Problem description I set the following in my `MODULE.bazel` file ``` module(name = "myrepo", version = "0.0.0", repo_name = "myrepo") bazel_dep(name = "rules_ruby", version = "0.10.0") ruby = use_extension("@rules_ruby//ruby:extensions.bzl",...
Hello, I have `MODULE.bazel` file that has the following contents ``` bazel_dep(name = "rules_ruby", version = "0.10.0") ruby = use_extension("@rules_ruby//ruby:extensions.bzl", "ruby") ruby.toolchain( name = "ruby", version = "3.3.1", # alternatively,...