From 8ead78492b372b9f16ef473be092f33d0f857aed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hrvoje=20=C5=A0imi=C4=87?= Date: Thu, 20 Jun 2013 00:35:28 +0200 Subject: [PATCH] add the default rake task --- README.md | 6 ++++++ Rakefile | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/README.md b/README.md index 86e6208..85f0e0c 100644 --- a/README.md +++ b/README.md @@ -46,3 +46,9 @@ And then execute: Or install it yourself as: $ gem install gemrat + +## Development + +Run the test suite with: + + $ rake diff --git a/Rakefile b/Rakefile index 2995527..ecea4bb 100644 --- a/Rakefile +++ b/Rakefile @@ -1 +1,7 @@ require "bundler/gem_tasks" + +require "rspec/core/rake_task" + +RSpec::Core::RakeTask.new(:spec) + +task :default => :spec