Skip to content

Commit 39a3e79

Browse files
tempozcopybara-github
authored andcommitted
Fix ruby lib paths in rules_ruby (#18233)
See protocolbuffers/rules_ruby#38. This fixes the ruby portion of the protocolbuffers build for me. Closes #18233 COPYBARA_INTEGRATE_REVIEW=#18233 from tempoz:tempoz-ruby-fix 2aee6e1 PiperOrigin-RevId: 684969223
1 parent bb69dd6 commit 39a3e79

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ kt_register_toolchains()
111111
http_archive(
112112
name = "rules_ruby",
113113
urls = [
114-
"https://github.com/protocolbuffers/rules_ruby/archive/b7f3e9756f3c45527be27bc38840d5a1ba690436.zip"
114+
"https://github.com/protocolbuffers/rules_ruby/archive/588d9dd40487277e2560ece09fe310d7c0ecb4a6.zip"
115115
],
116-
strip_prefix = "rules_ruby-b7f3e9756f3c45527be27bc38840d5a1ba690436",
117-
sha256 = "347927fd8de6132099fcdc58e8f7eab7bde4eb2fd424546b9cd4f1c6f8f8bad8",
116+
strip_prefix = "rules_ruby-588d9dd40487277e2560ece09fe310d7c0ecb4a6",
117+
integrity = "sha256-Lh/xxR6WsKJnS92sYkpJDBtdS6DNrCbi0kuUxBffG6E=",
118118
)
119119

120120
load("@rules_ruby//ruby:defs.bzl", "ruby_runtime")

WORKSPACE.bzlmod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
99
http_archive(
1010
name = "rules_ruby",
1111
urls = [
12-
"https://github.com/protocolbuffers/rules_ruby/archive/b7f3e9756f3c45527be27bc38840d5a1ba690436.zip"
12+
"https://github.com/protocolbuffers/rules_ruby/archive/588d9dd40487277e2560ece09fe310d7c0ecb4a6.zip"
1313
],
14-
strip_prefix = "rules_ruby-b7f3e9756f3c45527be27bc38840d5a1ba690436",
15-
sha256 = "347927fd8de6132099fcdc58e8f7eab7bde4eb2fd424546b9cd4f1c6f8f8bad8",
14+
strip_prefix = "rules_ruby-588d9dd40487277e2560ece09fe310d7c0ecb4a6",
15+
integrity = "sha256-Lh/xxR6WsKJnS92sYkpJDBtdS6DNrCbi0kuUxBffG6E=",
1616
)
1717

1818
load("@rules_ruby//ruby:defs.bzl", "ruby_runtime")

0 commit comments

Comments
 (0)