rules_ruby icon indicating copy to clipboard operation
rules_ruby copied to clipboard

Formerly canonical rules for ruby, that are about 2-3 years behind current Bazel. If they work for you great, but if not — please try the new rules ruby by Alex Radionov: https://github.com/bazel-cont...

Results 28 rules_ruby issues
Sort by recently updated
recently updated
newest added

Hello, I'm looking for usage information on this project, looking to incorporate it into an existing mono-repo. For our purposes as a primarily golang project, I can't rely on ruby...

I've been digging around for a while trying to use rules_ruby to grab my gems and put them into my runtime image. We're running a rails app via unicorn. Has...

Minimal reproduction: [repro.zip](https://github.com/bazelruby/rules_ruby/files/6529130/repro.zip) If you run `bazel run :main` in this workspace, you will get output which includes the following: ``` INFO: Build options --cxxopt, --incompatible_strict_action_env, and --legacy_external_runfiles have changed,...

rule::ruby_bundle
upstream-issue

This currently supports building ruby from source and using ruby from host. Building ruby from source can be slow and has to be redone every time we upgrade our clang...

Our `Gemfile` contains a couple of local 'path' referenced gems like this: ``` gem 'cube_api', path: 'engines/cube_api' ... ``` And when doing a `bazel build` of the `ruby_bundle` we get...

Thanks for the effort In building this project. I added the ruby_gem rule and it generates a .zip file in the cache directory. Is there a way to create a...

rule::ruby_gem

Some Gems result in an empty glob inside the generated BUILD files, which causes Bazel to fail. Generated globs which may be empty should probably pass `allow_empty = True` to...

needs-repro

Hey - I'm a bazel noob, so apologies for the question, but I'm trying to produce a container image with my rails project using these rules and I'm stuck. I...

feature

I was initially mislead by README content that says: "Building native extensions in gems with Bazel" is not yet supported. Is non-gem support for native extensions documented somewhere? I eventually...

help wanted
rule::examples

When using a `genrule` to generate ruby sources, it's helpful to output a directory and then use that for the sources of a `ruby_library` For example: ``` genrule( name =...

feature