From 35be765040e8552e4ac2ac3af01b8365ab848b69 Mon Sep 17 00:00:00 2001 From: Greg Lazarev Date: Mon, 8 Dec 2014 22:17:57 -0800 Subject: [PATCH] Add rake task for running tests --- README.md | 2 +- Rakefile | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100755 Rakefile 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