diff --git a/README.md b/README.md index f72920a..b23efc0 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Install the `vim-flavor` gem, install the dependencies and run the tests: ``` gem install vim-flavor vim-flavor install -vim-flavor test +rake ``` Credits diff --git a/Rakefile b/Rakefile new file mode 100755 index 0000000..3ffce7b --- /dev/null +++ b/Rakefile @@ -0,0 +1,7 @@ +#!/usr/bin/env rake + +task :test do + sh "vim-flavor test" +end + +task :default => :test