you are not using an login shell
the process of enabling login flag is described here: https://rvm.io/integration/gnome-terminal/
also some details on what login shell is: https://rvm.io/support/faq/#shell_login
Thus, You need to check the option "Run as login shell" in gnome-terminal settings.
Sometimes it is required to shell the command to /bin/bash --login.
It is required to open new terminal after this setting.
For remote connections it is important to understand the differene between running interactive ssh session and executing single commands.
While running ssh server and then working with the server interactively you are using login shell by default and it's all fine, but for ssh server "command" you are not using login shell and it would be required to run it with ssh server 'bash -lc "command"'.
Any remote invocation can have the same problem as executing single command with ssh.