Sven Schwyn
Sven Schwyn
As of now, it's not possible to manipulate the `args` in the before callback due to the arguments being passed with a splat `*args`. However, there are use cases where...
This is the last version which doesn't rely on gomodules. The already released 0.8 on the other hand [uses gomodules](https://github.com/joohoi/acme-dns/commit/5b1e51534f5c6738742e6b56af887e3280501168). Since I don't really code Go yet: Could someone point...
I might be misunderstanding the docs, but shouldn't the following work? ``` cd ~ echo "use ruby ruby-3.1.1" >/tmp direnv allow /tmp direnv exec /tmp ruby --version ``` The last...
I'm trying to pretty print a large (some MB) XML file using the following stylesheet: ```xml ``` The transformation: ```ruby Nokogiri::XSLT('pretty.xsl')).transform(xml) ``` While this works for small XML files, the...
The template for binstubs hardcode the Gemfile variant to either `Gemfile` or `gems.rb` (based on the currently used variant): https://github.com/rubygems/rubygems/blob/db374bc25bbe024d02787336e557d9e31efc9f6d/bundler/lib/bundler/templates/Executable#L11 This comes with a nasty downside best explained with an...
It would be great if this useful gem supported the alternative gemfile names as well: * `gems.rb` (alternative for `Gemfile`) * `gems.locked` (alternative for `Gemfile.lock`) These [alternative names were introduced...
Not sure if this is (partially) possible given the underlying KeePass database: * Orderable: Allow for fields to be ordered by moving them up and down. * Groupable: Allow for...
This small addition adds `-I` or `--installed` to list installed Rubies. This is very useful for folks using ruby-install only (without chruby). Thanks for considering to merge!
Is it possible to add support for [Fullstaq Ruby](https://fullstaqruby.org/)? I'm currently deploying MRI to both development workstations as and production servers with `ruby-install` which works like a charm. I'd give...
During provider discovery, the provider may do redirects such as Youtube from HTTP to HTTPS. Vimeo, however, redirects long, human readable URIs to the standard short numeric ones. The reply,...