The following errors when I run rspec:
rspec spec/mailers/lead_mailer_spec.rb
/Users/ryanbales/.rvm/gems/ruby-1.9.3-p484/gems/honeybadger-1.16.1/lib/honeybadger/exception_extensions.rb:11: [BUG] Segmentation fault
ruby 1.9.3p484 (2013-11-22 revision 43786) [x86_64-darwin14.1.0]
..............................
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: http://www.ruby-lang.org/bugreport.html
https://gist.github.com/ryankbales/b1732adee7fe503627d1
(The full error and stack trace are in the provided gist above)
I've gone through several solutions without finding the permanent one yet. At most I can run the spec in the gist above twice without reproducing and than it will go back to the same segfault. It will happen with any spec actually, but this is the one I am working on at the moment.
On a hunch, I ran brew link openssl
, however that didn't help. The solutions that did get the spec to run a couple times were the popular "uninstall & reinstall nokogiri", gem pristine --all
along with a complete recompile of the ruby gemset using rvm
.
Here's some stats:
Rails 3.0.20
ruby 1.9.3p484
OSX Yosemite 10.10.2
Thanks.