summaryrefslogtreecommitdiff
path: root/tasks/console.rake
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2019-04-16 04:50:34 -0600
committerDan Allen <dan.j.allen@gmail.com>2019-04-16 04:50:34 -0600
commitbcae07d8c558f4368bafdf2b6c21ad8a9aae9ebe (patch)
treec53f5dbfe1523bc7bab6cddad019b6d1ca2b3c4d /tasks/console.rake
parentc5c21d624a21b6adc7e6577fa41cc80116bb4899 (diff)
use shorthand rescue syntax and modern Hash syntax in rake tasks [skip ci]
Diffstat (limited to 'tasks/console.rake')
-rw-r--r--tasks/console.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/console.rake b/tasks/console.rake
index a6f6856a..fcd6e3ce 100644
--- a/tasks/console.rake
+++ b/tasks/console.rake
@@ -1,5 +1,5 @@
# frozen_string_literal: true
desc 'Open an irb session preloaded with this library'
task :console do
- sh 'bundle console', :verbose => false
+ sh 'bundle console', verbose: false
end