For some reason when I run any of the vim-rspec commands it shows up in my terminal as something like "rspec ~/railsapp/user_spec.rb" instead of "rspec ~/railsapp/spec/models/user_spec.rb". I changed
function! s:CurrentFilePath()
return @%
endfunction
to
function! s:CurrentFilePath()
return expand('%:p')
endfunction
in plugin/rspec.vim and it seemed to fix it. I was wondering if anyone else had this problem?