From c4bde860e28704f06c6447dcdf87631c4cf696a9 Mon Sep 17 00:00:00 2001 From: Guillaume Dott Date: Wed, 27 May 2015 11:26:43 +0200 Subject: [PATCH] Add Rakefile to run tests --- Rakefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Rakefile diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..70a846d --- /dev/null +++ b/Rakefile @@ -0,0 +1,5 @@ +require 'rspec/core/rake_task' + +RSpec::Core::RakeTask.new(:spec) + +task :default => :spec