RailsCasts Pro episodes are now free!

Learn more or hide this

Gabe's Profile

GitHub User: gabetax

Site: twitter.com/gabetax

Comments by Gabe

Avatar

These tools have a few issues if you're using vagrant:

  1. They will try to create a socket file on your share, which doesn't support that file type. You can get around this in spring with the SPRING_TMP_PATH, but I don't think zeus has a configuration option for this.
  2. notification fs events don't work, so they need to fallback to fs polling instead.
Avatar

If you're a pry user, you can run binding.pry in the better_errors console and it will pop up in your rails server

Avatar

When switching to spork I encountered a string of errors like this:

Break on __THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_COREFOUNDATION_FUNCTIONALITY___YOU_MUST_EXEC__() to debug.
/Users/username/.rvm/gems/ruby-1.8.7-p334/gems/rb-appscript-0.6.1/lib/_aem/connect.rb:86: [BUG] Segmentation fault
ruby 1.8.7 (2011-02-18 patchlevel 334) [i686-darwin10.7.0]

This happened when using the gem 'growl_notify'. Switching my Gemfile over to just use gem 'growl' fixed this error.