Closed jbrooksuk closed 10 years ago
Wow! Thanks much. It looks like the segmentation fault is happening when sqlite3
is loaded. Is it possible that you upgraded to Yosemite and didn't rebuild your gems? I believe gems with native extensions should be re-built when the OS is updated.
Can you try uninstalling and re-installing sqlite3? On my machine, I can do this with:
$ gem uninstall sqlite3 desktop -Ix --force && gem install desktop
@chrishunt is there a way I can rebuild all gems? Your suggestion has fixed desktop
for me, thanks!
@chrishunt is there a way I can rebuild all gems?
I'm not sure if there is a way to re-build everything. I think most folks just delete all installed gems and re-build as necessary when they start working on a project.
You could probably uninstall all gems by removing the gem dir:
$ gem environment gemdir
Or by using gem uninstall
$ for i in `gem list --no-versions`; do gem uninstall -aIx $i; done
Running Yosemite 10.10.1: