summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index ab6080b..3508f98 100644
--- a/Rakefile
+++ b/Rakefile
@@ -26,3 +26,11 @@ begin
rescue LoadError
puts "yard is not available. bundle install first to make sure all dependencies are installed."
end
+
+task :console do
+ require "irb"
+ require "irb/completion"
+ require "mixlib/cli"
+ ARGV.clear
+ IRB.start
+end