Sven Schwyn
Sven Schwyn
I'd vote in favor of this change for the given security reasons. However, there's another reason: When using binstubs and you don't want to type type the `bin/` prefix, there...
@eregon That's true for binaries (`ruby`, `irb` etc), they have to be prepended to the PATH. But we're referring to the scripts/binaries provided by gems. Here's what chruby prepends to...
@eregon Fair point! I tend to forget about system rubies (macOS was supposed to unbundle it at some point). This means the safety concerns cannot be addressed unless chruby is...
Since the name of the directory doesn't matter, there are different ones out there such as [the thoughtbots using .git/safe](https://thoughtbot.com/blog/git-safe). In order to make the relation between the git alias...
@postmodern Here's another use case. I've tripped over this issue as well trying to add the current Ruby version to the [iTerm](https://iterm2.com/) status bar: ...
Rather than drilling open after_do, I've implemented a barebone callback in my gem doing just the bits I need there: ```ruby module MyGem module Callback def before(method, &block) aliased_method =...
Shouldn't the following do the trick without the need to modify direnv itself? ``` # .config/direnv/lib/ruby.sh use_ruby() { local ruby=$1 load_prefix ~/.rubies/$ruby layout ruby unset GEM_HOME export GEM_HOME=~/.gem/${ruby%-*}/$(basename $(gem env...
Hello @flavorjones, thanks for your reply! I'm having a hard time extracting a failing example. The background: I'm building an XML document with Nokogiri's Builder, then apply the stylesheet, kaboom....
@flavorjones I've tried to pin down the exact cause of the segfault, but so far, it looks as if the mere size triggers it. This said, I can tell you...
@kyrylo Unfortunately, Reline the way it is used by the new IRB of Ruby 2.7 would not close this issue. Therefore, I created a separate issue #2104 for this neat...