rspec-result-syntax

This is vim syntax for RSpec(Serverspec) result.

Requirement

Install

Vundle

  1. Setup the vundle package manager
  2. Set the bundles for rspec-result-syntax
Bundle 'glidenote/rspec-result-syntax'
  1. Open up Vim and start installation with :BundleInstall

Neobundle

  1. Setup the neobundle package manager
  2. Set the bundles for rspec-result-syntax
NeoBundle 'glidenote/rspec-result-syntax'
  1. Open up Vim and start installation with :NeoBundleInstall

Setup

RSpec setting example

let g:quickrun_config = {}
let g:quickrun_config['ruby.rspec'] = {
      \'command'                  : 'rspec',
      \'cmdopt'                   : '-cfd',
      \'args'                     : "%{line('.')}",
      \'exec'                     : ['bundle exec %c %o %s:%a'],
      \'outputter/buffer/filetype': 'rspec-result',
      \'filetype'                 : 'rspec-result'
      \}

augroup RSpec
  autocmd!
  autocmd BufWinEnter,BufNewFile *_spec.rb set filetype=ruby.rspec
augroup END 

Serverspec setting example

let g:quickrun_config = {}
let g:quickrun_config['ruby.serverspec'] = {
      \'command'                  : 'rspec',
      \'cmdopt'                   : '-cfd',
      \'args'                     : "%{line('.')}",
      \'exec'                     : ['bundle exec %c %o %s:%a'],
      \'outputter/buffer/filetype': 'rspec-result',
      \'filetype'                 : 'rspec-result'
      \}

augroup Serverspec
  autocmd!
  autocmd BufWinEnter,BufNewFile *_spec.rb set filetype=ruby.serverspec
augroup END 

License

Lcense: Same terms as Vim itself (see license)