forked from ajgon/opsworks_ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.lvimrc
More file actions
16 lines (15 loc) · 682 Bytes
/
Copy path.lvimrc
File metadata and controls
16 lines (15 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let test#ruby#rspec#options = {
\ 'nearest': '--format documentation --color',
\ 'file': '--format documentation --color',
\ 'suite': '--format documentation --color',
\}
let test#ruby#rspec#executable = 'chef exec rspec'
let test#ruby#bundle_exec = 0
let g:projectionist_heuristics = {
\ "*.rb": {
\ "libraries/*.rb": { "alternate": "spec/unit/libraries/{}_spec.rb", "type": "source" },
\ "recipes/*.rb": { "alternate": "spec/unit/recipes/{}_spec.rb", "type": "source" },
\ "spec/unit/libraries/*_spec.rb": { "alternate": "libraries/{}.rb", "type": "spec" },
\ "spec/unit/recipes/*_spec.rb": { "alternate": "recipes/{}.rb", "type": "spec" }
\ }
\ }