Bob van der Linden

Results 95 comments of Bob van der Linden

I _think_ I ran into this issue as well. I tried the following: ## CLI options ``` openapi-generator-cli generate --remove-operation-id-prefix --remove-operation-id-prefix-delimiter . --remove-operation-id-prefix-count -1 ... ``` Does recognize `--remove-operation-id-prefix`, but...

What I commonly run into is forgetting to add/stage the gemset.nix file into git. Without doing that, Nix is not able to find it.

I haven't used `gemset.nix` in a long time and am not actively working on any Rails projects anymore. Sorry :sweat_smile:

I'm not fully aware of how `ruby-nix` should work, but from the code it seems the `ruby` package that is supplied isn't really being used. See the unused deconstructed attribute...

You can use an older version of nixpkgs-ruby which refers to an older version of nixpkgs where openssl 1.1 isn't deprecated/removed yet. For instance: ``` $ nix run 'github:bobvanderlinden/nixpkgs-ruby/853db1f7f6af87322c18042af555194b1306172f#"ruby-2.7"' --...

> Since I'm not running NixOS and don't want to expect every developer to either modify their home folder or run with env variables, is there a way to modify...

Ah right, nixpkgs-ruby must then also follow nixpkgs of devenv: ``` inputs: nixpkgs-ruby: url: github:bobvanderlinden/nixpkgs-ruby inputs: nixpkgs: follows: nixpkgs permittedInsecurePackages: - openssl-1.1.1w ```

Hmm, interesting. Bundler is shipped with Ruby nowadays, so the Ruby packages have it in `/bin/bundle`: ```console $ nix build github:bobvanderlinden/nixpkgs-ruby#"ruby-3" --print-out-paths /nix/store/52k5x0jcrxxx857ilizpiafk8fy7rfa1-ruby-3.2.2 $ ls -l /nix/store/52k5x0jcrxxx857ilizpiafk8fy7rfa1-ruby-3.2.2/bin /nix/store/52k5x0jcrxxx857ilizpiafk8fy7rfa1-ruby-3.2.2/bin/bundle ``` That...

Very good to see this change :+1: `useRailsExpress` was unfortunately still left defunct in the code. I have been thinking what is a good way to resolve these patches from...

Patchsets might have not been the best wording, but I see that rvm has more patches than just railsexpress. For instance, there are patches for openssl compatibility. They could be...