From 12075323c56ca491b57a558079027bdb1e08430e Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Tue, 7 Apr 2015 20:06:06 +0000 Subject: [PATCH] Add rspec rake task --- Rakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 99a0e03..a211187 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,8 @@ require 'cucumber/rake/task' +require 'rspec/core/rake_task' -task default: :features +task default: %i[features spec] Cucumber::Rake::Task.new(:features) + +RSpec::Core::RakeTask.new(:spec)