Reputation: 52987
I'm following this video tutorial for installing Commant-t on MacVim. At a point I'd have to perform the command ruby extconf.rb
at the folder ~/.vim/ruby/command-t
. I'm getting the following error:
mkmf.rb can't find header files for ruby at /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/ruby.h
Upvotes: 1
Views: 448
Reputation: 196566
Your Ruby is missing the headers needed to build Command-T's backend. You have two solutions:
Install a proper Ruby.
Use another fuzzy file navigation plugin that doesn't need Ruby or compilation:
Upvotes: 3