I was going through Ruby autocompletion for Sublime Text 2 (Mac OSx). I've installed a cool package Sublime Codeintel that I found very usefull.
It works properly for Ruby standard library (if we can call it like that) but I cannot configure it to work with functions/classes/modules coming from Gem I've installed in my project. I've googled and I found that I need to modify the codeintel_language_settings in the Sublime Codeintel settings with something like:
"Ruby": {
"ruby": "/usr/bin/ruby",
"rubyExtraPaths": []
}
but it doesn't work. I've also tried to use the rbenv path (since I'm using rbenv) but whit no success.
Anyone could help on this?
Thanks!