Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skalnik/vim-vroom
A vim plugin for running your Ruby tests
https://github.com/skalnik/vim-vroom
Last synced: about 2 months ago
JSON representation
A vim plugin for running your Ruby tests
- Host: GitHub
- URL: https://github.com/skalnik/vim-vroom
- Owner: skalnik
- License: mit
- Created: 2012-03-29T00:48:16.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2018-04-11T10:37:35.000Z (over 6 years ago)
- Last Synced: 2024-10-18T15:24:51.071Z (3 months ago)
- Language: Vim script
- Homepage:
- Size: 89.8 KB
- Stars: 231
- Watchers: 12
- Forks: 62
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
vroom.vim
=========Run your Ruby tests! Supports RSpec, Test::Unit/MiniTest, Konacha, and Cucumber.
For more information, check out the
[documentation](https://github.com/skalnik/vim-vroom/blob/master/doc/vroom.txt)
(available in Vim after installation `:help vroom`)Installation
------------Check out [vundle](https://github.com/gmarik/vundle) or
[pathogen.vim](https://github.com/tpope/vim-pathogen) and then install:### vundle
Add the following to your `.vimrc` after vundle setup:
Plugin 'skalnik/vim-vroom'
and remember to run `:PluginInstall`.
### pathogen
Copy and paste:
$ cd ~/.vim/bundle
$ git clone 'git://github.com/skalnik/vim-vroom.git'Oddities
--------If you're using MacVim & (rbenv or rvm) and your tests are running under the wrong Ruby version, check out
[this](http://vim.1045645.n5.nabble.com/MacVim-and-PATH-td3388705.html#a3392363) fix.Credit
------I first stumbled upon this snippet of code in [Gary Bernhardt's
.vimrc](https://github.com/garybernhardt/dotfiles/blob/master/.vimrc), and have
modified it, turned it into a plugin and begun improving it. [Steven
Harman](http://github.com/stevenharman) also provided inspiration in the
creation of the plugin, cucumber support, and Gemfile detection.