@@ -5,7 +5,6 @@ RubyRuntimeInfo = provider(
55 fields = {
66 "interpreter" : "A label which points the Ruby interpreter" ,
77 "bundler" : "A label which points bundler command" ,
8- "init_files" : "A list of labels which points initialization libraries" ,
98 "runtime" : "A list of labels which points runtime libraries" ,
109 "rubyopt" : "A list of strings which should be passed to the interpreter as command line options" ,
1110 },
@@ -16,7 +15,6 @@ def _ruby_toolchain_impl(ctx):
1615 ruby_runtime = RubyRuntimeInfo (
1716 interpreter = ctx .attr .interpreter ,
1817 bundler = ctx .attr .bundler ,
19- init_files = ctx .attr .init_files ,
2018 runtime = ctx .files .runtime ,
2119 rubyopt = ctx .attr .rubyopt ,
2220 ),
@@ -37,10 +35,6 @@ _ruby_toolchain = rule(
3735 executable = True ,
3836 cfg = "target" ,
3937 ),
40- "init_files" : attr .label_list (
41- allow_files = True ,
42- cfg = "target" ,
43- ),
4438 "runtime" : attr .label (
4539 mandatory = True ,
4640 allow_files = True ,
@@ -57,7 +51,6 @@ def ruby_toolchain(
5751 interpreter ,
5852 bundler ,
5953 runtime ,
60- init_files = [],
6154 rubyopt = [],
6255 rules_ruby_workspace = RULES_RUBY_WORKSPACE_NAME ,
6356 ** kwargs ):
@@ -66,7 +59,6 @@ def ruby_toolchain(
6659 name = impl_name ,
6760 interpreter = interpreter ,
6861 bundler = bundler ,
69- init_files = init_files ,
7062 rubyopt = rubyopt ,
7163 runtime = runtime ,
7264 )
0 commit comments