Thanks :)
gem install wordmove
should install wordmove ruby gem
gem install wordmove
produces the error:
ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /usr/local/rvm/gems/ruby-2.4.0 directory.
The default user is not a member of the rvm group. The solution described at http://stackoverflow.com/questions/26242712/installing-rvm-getting-error-there-was-an-error23 works for me:
rvm group add rvm "$USER"
Could this be part of the initial VVV setup?
vagrant ssh
gem install wordmove
wordmove is a very useful gem for pushing and pulling WordPress installations. I imagine many VVV users want to be able to use it, and based on blog posts, many people are (trying to) use VVV and wordmove together. I had no such problems with it in an earlier version of VVV (prior to ruby 2.4 perhaps).
I just ran into the same problem trying to install the travis gem.
@LoreleiAurora is this caused by the provisioner running as root?
Same problem here.
A simple sudo chmod 777 -R /usr/local/rvm do the trick. But OP fix seems more suitable.
I would note that when the initial provisioner runs it runs as root, unlike the user you get on vagrant ssh, so rvm group add rvm "$USER" will need some adjustment
Right now ruby is not installed anymore with VVV so gem and others are required to be installed manually so I don't think that is anymore a bug for VVV.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
Right now ruby is not installed anymore with VVV so
gemand others are required to be installed manually so I don't think that is anymore a bug for VVV.