Dmitry Pogrebnoy

Results 14 comments of Dmitry Pogrebnoy

I faced the same problem with others AEAD 2022 encryption methods. Without it, it is impossible to use the feature "one port -multiple users".

I spent some time and found a workaround for that. So you need to refresh bash in order to apply .bashrc and activate mise: `SHELL ["/bin/bash", "--login" ,"-c"]`

@jdx This issue also reproduces when mise is not activated and you try to install/uninstall some gems using `~/.local/bin/mise exec --quiet [email protected] -- gem uninstall `. Is there any way...

Here is full stacktrace of the error: ``` 11:53:27,522 FINE plugins.ruby.gem.gem.GemRunner - stderr: ERROR: While executing gem ... (Errno::ENOENT) 11:53:27,522 FINE plugins.ruby.gem.gem.GemRunner - stderr: No such file or directory -...

@jdx Well, a command `ENV PATH="~/.local/bin/mise:${PATH}"` after mise installation and before any other mise commands doesn't do the trick. But `ENV PATH="~/.local/bin:${PATH}"` does. Thank you! It would be nice if...

@jdx Nevertheless, adding mise to PATH doesn't help for jruby-9.4.5.0. Stacktrace more or less the same: ``` ERROR: While executing gem ... (Errno::ENOENT) 21:48:41  No such file or directory -...

Well, for some reason, `ENV PATH="~/.local/bin:${PATH}"` doesn't work for jruby, but full path `ENV PATH="home/user/.local/bin:${PATH}"` works. Probably it would also be good to mention it in documentation.

@jdx Another case when I get an error with unresolved `mise` command. I use noninteractive shell without login, so `/mise activate` is not invoked. And I use command like `bash...

This API is mainly needed to be used in the `ruby-denbug-ide` gem. [Here is an example of how it is implemented now](https://github.com/ruby-debug/ruby-debug-ide/blob/master/lib/ruby-debug-ide/commands/expression_info.rb#L11C9-L11C16). This method evaluates three values for an input...

Thank you for the quick response! Sure, will open a pull request