summaryrefslogtreecommitdiff
path: root/tasks/console.rake
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/console.rake')
-rw-r--r--tasks/console.rake5
1 files changed, 5 insertions, 0 deletions
diff --git a/tasks/console.rake b/tasks/console.rake
new file mode 100644
index 00000000..a6f6856a
--- /dev/null
+++ b/tasks/console.rake
@@ -0,0 +1,5 @@
+# frozen_string_literal: true
+desc 'Open an irb session preloaded with this library'
+task :console do
+ sh 'bundle console', :verbose => false
+end