summaryrefslogtreecommitdiff
path: root/tasks/console.rake
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2019-03-06 23:59:50 -0700
committerDan Allen <dan.j.allen@gmail.com>2019-03-07 00:46:56 -0700
commite53b7536d7df8d3cefcf14b0d6dd774d1315e42c (patch)
treefd8c2212d23ef15e9b015eea51593edf77152936 /tasks/console.rake
parent49e1c7f4aa589c726d9aa69d3cd1813ee96eed7b (diff)
organize rake build by moving tasks into task files
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