Default gems, better brew install, and Pry configuration

This commit is contained in:
Michael Yockey
2023-01-25 16:53:25 -05:00
parent 1737a0f0a8
commit 701b115ca3
7 changed files with 41 additions and 42 deletions

6
pryrc Normal file
View File

@@ -0,0 +1,6 @@
# frozen_string_literal: true
require 'awesome_print'
Pry.print = proc { |output, value| output.puts value.ai({ limit: true }) }
Pry.config.editor = proc { |file, line| "code --wait --goto #{file}:#{line} --disable-workspace-trust" }