From 45dfd6456d66bbae370ba609200bd65c8316468b Mon Sep 17 00:00:00 2001 From: Harry Lewis Date: Thu, 11 Jan 2024 17:34:30 -0500 Subject: [PATCH] Use irb instead of pry inside bin/console --- bin/console | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/bin/console b/bin/console index 3be5a88..6811305 100755 --- a/bin/console +++ b/bin/console @@ -2,11 +2,7 @@ # frozen_string_literal: true require 'bundler/setup' +require 'irb' require 'bambora/client' -# You can add fixtures and/or initialization code here to make experimenting -# with your gem easier. You can also use a different console, if you like. - -# (If you use this, don't forget to add pry to your Gemfile!) -require 'pry' -Pry.start +IRB.start(__FILE__)