summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-07-30 09:03:36 -0700
committerTim Smith <tsmith@chef.io>2018-07-30 09:03:36 -0700
commitcfcb97655ac7fa32e4c7a32a1c5f8ca0c6726629 (patch)
tree6a742437b3868148fe78daf82796ec2407ad9c5a /Rakefile
parent87681b1af636ea79167d02afaf5931eb8c85bec7 (diff)
downloadmixlib-cli-cfcb97655ac7fa32e4c7a32a1c5f8ca0c6726629.tar.gz
Move dev deps to the Gemfile and add console task
Signed-off-by: Tim Smith <tsmith@chef.io>
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