I installed the starling gem under rvm, but there's problem starting starling because it expects permission to write to /var/spool/starling
, and installing starling under rvm doesn't give it the required permissions. sudo starling
also doesn't work because it can't find the starling binary. I ended up doing this
sudo `which starling`
Which works, but I was wondering if RVM had a best practice for this.