We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5973254 commit 37cf590Copy full SHA for 37cf590
ruby/private/runtime_alias.bzl
@@ -1,4 +1,5 @@
1
load("@bazel_skylib//rules:common_settings.bzl", "BuildSettingInfo")
2
+load("@rules_java//java:defs.bzl", "java_binary")
3
load(":constants.bzl", "TOOLCHAIN_TYPE_NAME")
4
load(":providers.bzl", "RubyRuntimeToolchainInfo")
5
ruby/runtime/BUILD.bazel
@@ -31,6 +31,12 @@ _ruby_jars_alias(
31
runtime = ":runtime",
32
)
33
34
+java_binary(
35
+ name = "jruby_binary",
36
+ main_class = "org.jruby.Main",
37
+ runtime_deps = [":jars"],
38
+)
39
+
40
_ruby_headers_alias(
41
name = "headers",
42
0 commit comments