From 30df22f1c8c070273e6468958fd679c5832a9c69 Mon Sep 17 00:00:00 2001 From: Witz Hsiao Date: Tue, 27 Jan 2015 20:34:16 +0800 Subject: [PATCH] add a task `console` on rake. --- Rakefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Rakefile b/Rakefile index cdbf1f89eb..bc76c8a613 100644 --- a/Rakefile +++ b/Rakefile @@ -11,3 +11,7 @@ RSpec::Core::RakeTask.new(:spec) task :test => [:minitest, :spec] task :default => :test + +task :console do + sh 'irb -Ilib -rvendor/homebrew-fork/global -rhbc' +end