From d4b33b3db720dd61424a77d80c96f16dfd75870d Mon Sep 17 00:00:00 2001 From: mordaroso Date: Fri, 10 Aug 2012 13:51:23 +0200 Subject: [PATCH] add rspec task to Rakefile --- Rakefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index f57ae68..b71853a 100644 --- a/Rakefile +++ b/Rakefile @@ -1,2 +1,7 @@ #!/usr/bin/env rake -require "bundler/gem_tasks" +require 'bundler' +Bundler::GemHelper.install_tasks + +require 'rspec/core/rake_task' +RSpec::Core::RakeTask.new(:spec) +task :default => :spec \ No newline at end of file