From 81ee2ec0b662b9aaef2e51baca3b8accb8adac9e Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 24 Nov 2010 13:46:11 +0000 Subject: [PATCH] added console rake task --- Rakefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Rakefile b/Rakefile index d68a742..fdba182 100644 --- a/Rakefile +++ b/Rakefile @@ -55,3 +55,14 @@ rescue LoadError abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard" end end + + +# +# Misc. +# + +desc "Start an irb console with TimeExt pre-loaded." +task :console do + exec "irb -r spec/spec_helper" +end +task :c => :console